Uses of Class
toxi.geom.mesh.Vertex

Packages that use Vertex
toxi.geom.mesh   
 

Uses of Vertex in toxi.geom.mesh
 

Subclasses of Vertex in toxi.geom.mesh
 class WEVertex
           
 

Fields in toxi.geom.mesh declared as Vertex
 Vertex Face.a
           
 Vertex Face.b
           
 Vertex Face.c
           
 

Fields in toxi.geom.mesh with type parameters of type Vertex
 java.util.LinkedHashMap<Vec3D,Vertex> TriangleMesh.vertices
          Vertex buffer & lookup index when adding new faces
 

Methods in toxi.geom.mesh that return Vertex
 Vertex TriangleMesh.getClosestVertexToPoint(ReadonlyVec3D p)
           
 Vertex Mesh3D.getClosestVertexToPoint(ReadonlyVec3D p)
           
 Vertex TriangleMesh.getVertexAtPoint(Vec3D v)
           
 Vertex TriangleMesh.getVertexForID(int id)
           
 Vertex[] Face.getVertices(Vertex[] verts)
           
 

Methods in toxi.geom.mesh that return types with arguments of type Vertex
 java.util.Collection<Vertex> VertexSelector.getSelection()
          Returns the actual collection of selected vertices
 java.util.Collection<Vertex> TriangleMesh.getVertices()
           
 java.util.Collection<Vertex> Mesh3D.getVertices()
           
 

Methods in toxi.geom.mesh with parameters of type Vertex
 Vertex[] Face.getVertices(Vertex[] verts)
           
 

Method parameters in toxi.geom.mesh with type arguments of type Vertex
 void WETriangleMesh.removeVertices(java.util.Collection<Vertex> selection)
           
 

Constructors in toxi.geom.mesh with parameters of type Vertex
Face(Vertex a, Vertex b, Vertex c)
           
Face(Vertex a, Vertex b, Vertex c, Vec2D uvA, Vec2D uvB, Vec2D uvC)