Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dear Developer,
Is it possible to transform the face GetInstanceGeometry to GetSymbolGeometry?
I can use GetInstanceGeometry for intersection checking but I cannot use that face to place a family.
How should I place a family at intersection face of column and beam?
I want to check intersection at face and then place a family.
Kindly help me.
Thanks Advance,
Naing Oo
List<Face> instanceFace = new List<Face>(); foreach (GeometryObject instObj in instance.GetInstanceGeometry()) { Solid solid = instObj as Solid; if (null == solid || 0 == solid.Faces.Size || 0 == solid.Edges.Size) { continue; } foreach (Face face in solid.Faces) { PlanarFace pf = face as PlanarFace; if (pf != null) { instanceFace.Add(pf); } } }
Solved! Go to Solution.