Uses of Class
toxi.geom.mesh.VertexSelector

Packages that use VertexSelector
toxi.geom.mesh   
 

Uses of VertexSelector in toxi.geom.mesh
 

Subclasses of VertexSelector in toxi.geom.mesh
 class BoxSelector
          A VertexSelector implementation for selecting vertices within a given AABB.
 class DefaultSelector
           
 class PlaneSelector
          A VertexSelector implementation for selecting vertices in relation to a given Plane.
 

Methods in toxi.geom.mesh that return VertexSelector
 VertexSelector VertexSelector.addSelection(VertexSelector sel2)
          Adds all vertices selected by the given selector to the current selection.
 VertexSelector VertexSelector.clearSelection()
          Clears the current selection.
 VertexSelector VertexSelector.invertSelection()
          Creates a new selection of all vertices NOT currently selected.
 VertexSelector VertexSelector.selectSimilar(java.util.Collection<? extends Vec3D> points)
          Selects vertices identical or closest to the ones given in the list of points.
abstract  VertexSelector VertexSelector.selectVertices()
          Selects vertices using an implementation specific method.
 VertexSelector PlaneSelector.selectVertices()
           
 VertexSelector DefaultSelector.selectVertices()
           
 VertexSelector BoxSelector.selectVertices()
           
 VertexSelector VertexSelector.subtractSelection(VertexSelector sel2)
          Removes all vertices selected by the given selector from the current selection.
 

Methods in toxi.geom.mesh with parameters of type VertexSelector
 VertexSelector VertexSelector.addSelection(VertexSelector sel2)
          Adds all vertices selected by the given selector to the current selection.
 void WEMeshFilterStrategy.filter(VertexSelector selector, int numIterations)
           
 void LaplacianSmooth.filter(VertexSelector selector, int numIterations)
           
 VertexSelector VertexSelector.subtractSelection(VertexSelector sel2)
          Removes all vertices selected by the given selector from the current selection.