Archived issue #0023401
BRepBuilderAPI_MakeWire::Vertex() returns NULL vertex after adding first edge
Description
I think the following behaviour is not valid. After adding the first edge to a wire, BRepBuilderAPI_MakeWire shouldn't return a NULL vertex
TopoDS_Edge test = BRepBuilderAPI_MakeEdge(...);
BRepBuilderAPI_MakeWire makewire;
makewire.Add(test);
makewire.Vertex() returns NULL vertex
On the other hand makewire.Edge() does NOT return a null edge.
TopoDS_Edge test = BRepBuilderAPI_MakeEdge(...);
BRepBuilderAPI_MakeWire makewire;
makewire.Add(test);
makewire.Vertex() returns NULL vertex
On the other hand makewire.Edge() does NOT return a null edge.
Public activity
4 archived notes
Participants are labeled by their role within this record.
The branch CR23401 is ready for review
The branch CR23401 is updated and ready for review again.
The right behavior of the method BRepBuilderAPI_MakeWire::Vertex() is not clear, so we need more information illustrating the problem.
Branch [archived branch] has been deleted by Participant.
[revision removed]
[revision removed]