Suppose I have a vertex list:
((0, 0, 0), (1, 0, 0), (1, 1, 0), (0, 1, 0), (0, 0, 1), (1, 0, 1), (1, 1, 1), (0, 1, 1))
and a face list that indexes into the vertex list (this one for the surface of a cube with each cube face divided into triangular facets):
((1, 6, 5), (6, 7, 5), (8, 3, 4), (3, 1, 4), (1, 8, 4), (1, 3, 2), (3, 7, 2), (7, 6, 2), (6, 1, 2), (7, 3, 8), (8, 1, 5), (7, 8, 5))
Are there any examples that would hint at how to turn this into a Rhino Brep using RhinoCommon?
Chris