Here is a newbie question regarding making wires in OpenCascade: How can you make a closed wire out of a set of non-sequenced but connected edges using BRepBuilderAPI_MakeWire() or a similar function ?
For instance, the following form a closed wire:
Edge1
Edge2
Edge3
Edge4
Edge5
but how could you make a wire in OpenCascade given the sequence:
Edge5
Edge1
Edge3
Edge2
Edge4
which might not necessarily be in order of their connecting vertices. I have found the following posting which hints at a solution: