Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want to visualize different faces of MEP spaces in 3d using Direct3DContext (in a later step).
I've collected all MEP spaces from my model, and then use Element.get_Geometry to get the geometric representation:
var geometry = space.get_Geometry(new Options
{
IncludeNonVisibleObjects = true,
});
But after this I'm not sure what to do to get the coordinates to be able to draw individual faces of the space
In the PlanarFace objects I can not find enough information to draw it... Maybe I misunderstand something, but from what I can see I need a Length property to be able to draw using this information. Origin, Directions (XVector, YVector) is not enough, right?
Solved! Go to Solution.