Beispiel #1
0
 /// <summary>
 /// Create a mesh from a collection of Points and a collection of IndexGroups referencing the Point collection
 ///
 /// </summary>
 /// <search>mesh,meshes
 ///             </search>
 public static Mesh ByPointsFaceIndices(IEnumerable <Point> vertexPositions, IEnumerable <IndexGroup> indices)
 {
     return(Mesh.Wrap(HostFactory.Factory.MeshByPointsFaceIndices(Point.Unwrap(vertexPositions), IndexGroup.Unwrap(indices)), true));
 }