Main classes you
will be using are Body, face, edge and vertex. There are many other classes associate with
those. In the simplest scenario, |
|
•Basic functions that you will use to traverse b-rep model
is Body.Face – giben a body, this returns a collection of faces. |
|
•Face.Edges – this returns a collection of edges of the
given face. Edges are in the order of forming a counter clockwise. Face
normal is going toward the outside of the solid. |
|
•Edge.Vertex – returns the vertex at the start pf the edge.
To retrieve the other end, you can use Edge.Partner.Vertex. |
|
Boolean operation is
also supported. |
|
You can also get
integral properties, such as area, volumn and the center of the mass. |
|