-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BRep_Tool:: TopoDS_Vertex hasn't gp_Pnt when making a plate from a wire #890
Comments
It could be that with splines the wire was not being closed properly for some reason. |
Looks like the issue occur in the offset generation part. Do you get a correct surface without the offset? |
The following might be a solution, at least it worked for me. for e in listOfEdges:
wire_builder.Add(e.wrapped) with occ_edges_list = TopTools_ListOfShape()
for e in listOfEdges:
occ_edges_list.Append(e.wrapped)
wire_builder.Add(occ_edges_list) my two cents is that it might take advantage of the following property :
|
This is working in current master with change to surface_points as follows: |
Thanks for checking @lorenzncode ! |
I am attempting to generate a plate with a given thickness based on a closed wire such as in the example below:
However, I see the following error when I try to make an
interpPlate
:The
edge_wire
itself is generated with no problems and looks like this:This is looks strange for me because the same code works perfectly for another set of points:
and the result in this case is very nice.
Perhaps I am missing something?
The text was updated successfully, but these errors were encountered: