public Mesh Operate(IEnumerable <Token> token) { // operate all operations foreach (var tok in token) { _applyOperation(tok); } return(_pMesh.ToRhinoMeshWithNgons()); }
public static PlanktonMesh CombineIdenticalVertices(this PlanktonMesh pMesh) { // ugly hack for now // TODO: Replace this with a real method return(pMesh.ToRhinoMeshWithNgons().ToPlanktonMeshWithNgons()); }