Uses of Class
toxi.geom.mesh2d.DelaunayVertex

Packages that use DelaunayVertex
toxi.geom.mesh2d   
 

Uses of DelaunayVertex in toxi.geom.mesh2d
 

Methods in toxi.geom.mesh2d that return DelaunayVertex
 DelaunayVertex DelaunayVertex.add(DelaunayVertex p)
          Add.
 DelaunayVertex DelaunayVertex.bisector(DelaunayVertex point)
          Perpendicular bisector of two Pnts.
static DelaunayVertex DelaunayVertex.circumcenter(DelaunayVertex[] simplex)
          Circumcenter of a simplex.
static DelaunayVertex DelaunayVertex.cross(DelaunayVertex[] matrix)
          Compute generalized cross-product of the rows of a matrix.
 DelaunayVertex DelaunayVertex.extend(double... coords)
          Create a new DelaunayVertex by adding additional coordinates to this DelaunayVertex.
 DelaunayVertex DelaunayVertex.isOn(DelaunayVertex[] simplex)
          Test if this DelaunayVertex is on a simplex.
 DelaunayVertex DelaunayVertex.isOutside(DelaunayVertex[] simplex)
          Test if this DelaunayVertex is outside of simplex.
 DelaunayVertex DelaunayVertex.subtract(DelaunayVertex p)
          Subtract.
 

Methods in toxi.geom.mesh2d with parameters of type DelaunayVertex
 DelaunayVertex DelaunayVertex.add(DelaunayVertex p)
          Add.
 double DelaunayVertex.angle(DelaunayVertex p)
          Angle (in radians) between two Pnts (treated as vectors).
 DelaunayVertex DelaunayVertex.bisector(DelaunayVertex point)
          Perpendicular bisector of two Pnts.
static DelaunayVertex DelaunayVertex.circumcenter(DelaunayVertex[] simplex)
          Circumcenter of a simplex.
static double DelaunayVertex.content(DelaunayVertex[] simplex)
          Determine the signed content (i.e., area or volume, etc.) of a simplex.
static DelaunayVertex DelaunayVertex.cross(DelaunayVertex[] matrix)
          Compute generalized cross-product of the rows of a matrix.
 void DelaunayTriangulation.delaunayPlace(DelaunayVertex site)
          Place a new site into the DT.
static double DelaunayVertex.determinant(DelaunayVertex[] matrix)
          Compute the determinant of a matrix (array of Pnts).
 int DelaunayVertex.dimCheck(DelaunayVertex p)
          Check that dimensions match.
 double DelaunayVertex.dot(DelaunayVertex p)
          Dot product.
 boolean DelaunayVertex.isInside(DelaunayVertex[] simplex)
          Test if this DelaunayVertex is inside a simplex.
 DelaunayVertex DelaunayVertex.isOn(DelaunayVertex[] simplex)
          Test if this DelaunayVertex is on a simplex.
 DelaunayVertex DelaunayVertex.isOutside(DelaunayVertex[] simplex)
          Test if this DelaunayVertex is outside of simplex.
 toxi.geom.mesh2d.DelaunayTriangle DelaunayTriangulation.locate(DelaunayVertex point)
          Locate the triangle with point inside it or on its boundary.
 toxi.geom.mesh2d.DelaunayTriangle DelaunayTriangulation.neighborOpposite(DelaunayVertex site, toxi.geom.mesh2d.DelaunayTriangle triangle)
          Report neighbor opposite the given vertex of triangle.
 int[] DelaunayVertex.relation(DelaunayVertex[] simplex)
          Relation between this DelaunayVertex and a simplex (represented as an array of Pnts).
 DelaunayVertex DelaunayVertex.subtract(DelaunayVertex p)
          Subtract.
 java.util.List<toxi.geom.mesh2d.DelaunayTriangle> DelaunayTriangulation.surroundingTriangles(DelaunayVertex site, toxi.geom.mesh2d.DelaunayTriangle triangle)
          Report triangles surrounding site in order (cw or ccw).
static java.lang.String DelaunayVertex.toString(DelaunayVertex[] matrix)
          Create a String for a matrix.
 int DelaunayVertex.vsCircumcircle(DelaunayVertex[] simplex)
          Test relation between this DelaunayVertex and circumcircle of a simplex.