Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
HI,
I am trying to get the boundary of a complex floor.
Currently I am able to get all det edges, both bounary and interio edges, by using topface and use alle edges produced from this.. (typical 3 pr face)
Iterating trough edges with this code
var creases = floor.SlabShapeEditor.SlabShapeCreases; var boundaryCuvrves = new List<Curve>(); var listOfExceptions = new List<Exception>(); foreach (SlabShapeCrease cease in ceases) { if (crease.CreaseType == SlabShapeCreaseType.Boundary) { try { boundaryCuvrves.Add(crease.Curve); } catch (Exception e ) { listOfExceptions.Add(e); } } }
theese curves are boundarys, and all of them, But only 2 points.. this means that arcs, splines etc.
is returned as straight lines..
Anyone know a way to get the 3D edges of such floors ?
Solved! Go to Solution.