Exemplo n.º 1
0
        public Mesh Operate(IEnumerable <Token> token)
        {
            // operate all operations
            foreach (var tok in token)
            {
                _applyOperation(tok);
            }

            return(_pMesh.ToRhinoMeshWithNgons());
        }
Exemplo n.º 2
0
 public static PlanktonMesh CombineIdenticalVertices(this PlanktonMesh pMesh)
 {
     // ugly hack for now
     // TODO: Replace this with a real method
     return(pMesh.ToRhinoMeshWithNgons().ToPlanktonMeshWithNgons());
 }