You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void BRepBuilderAPI_MakeWire::Add (const TopTools_ListOfShape & L)
Adds the edges of <L> to the current wire. The edges are not to be consecutive.
But they are to be all connected geometrically or topologically.
If some of them are not connected the Status give DisconnectedWire
but the "Maker" is Done() and you can get the partial result.
(ie connected to the first edgeof the list <L>)
Would you consider a PR for this?
The text was updated successfully, but these errors were encountered:
Related (maybe) to #890
I have a list of connected edges
edge_wire
forming a closed loop that I use to feed theinterpPlate()
function:In the current implementation of the
assembleEdges()
method inshapes.py
:yields the following result, where it looks like the wire is not closed properly:
Changing it to
yields
which is the expected result.
The new implementation might take advantage of the following property :
(https://dev.opencascade.org/doc/refman/html/class_b_rep_builder_a_p_i___make_wire.html#ae9dd6e34dfd1bc0df8dc3b9c01bb97c2)
Would you consider a PR for this?
The text was updated successfully, but these errors were encountered: