Introduction
This example describes the different mesh functionalities as follows:
Create mesh with unindexed points
Create mesh elements with variable length faces
Mesh Boolean operations (union, intersection, difference)
How to
Create a mesh element with 4 unindexed points
EditElementHandle eeh;
PolyfaceHeaderPtr dgnPolyface = PolyfaceHeader::CreateFixedBlockCoordinates (4);
dgnPolyface->Point ().CopyVectorFrom (m_Points);
if ...(read more)
↧