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
Some of the surfaces created using SolidModels.extrude_z!() are missing when rendered with SolidModels. Whether this problem occurs or not seems to depend on what MeshSized is used.
After modifying the following code in render!solidmodel/render.jl, changing remove_object=true to remove_object=false , the problem goes away and all the surfaces can be obtained.
if isa(kernel(sm), OpenCascade)
# Only OpenCascade supports boolean union.
sm[h_name] = union_geom!(sm[h_name, 2], sm[h_name, 2], remove_object=true)
end
The text was updated successfully, but these errors were encountered:
Possibly related: in experimenting with this I've found that overlapping or adjoining extrusions are problematic in general, especially but not necessarily with MeshSized. Taking the union before extrusion helps but usually only without MeshSized.
Some of the surfaces created using SolidModels.extrude_z!() are missing when rendered with SolidModels. Whether this problem occurs or not seems to depend on what
MeshSized
is used.After modifying the following code in
render!
solidmodel/render.jl
, changingremove_object=true
toremove_object=false
, the problem goes away and all the surfaces can be obtained.The text was updated successfully, but these errors were encountered: