Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I select a face of the wall, and I want to extrude a solid by this face.
List<CurveLoop> Loop = face.GetEdgesAsCurveLoops().ToList();
Solid solid = GeometryCreationUtilities.CreateExtrusionGeometry(Loop,
face.ComputeNormal(UV.Zero), thickness);
It's an instance wall. If the CurveLoop is opened shouldn't be created.
I try to use the CurveLoop.IsOpen method to determine whether the CurveLoop is closed, but the results are all false.
I can't understand why "The profile CurveLoops do not satisfy the input requirements".
How to avoid this error.
Can I confirm in advance whether CreateExtrusionGeometry will succeed? Or how should I modify the CurveLoop?
Solved! Go to Solution.