Uses of Class
org.jzy3d.plot3d.builder.delaunay.jdt.Triangle_dt

Packages that use Triangle_dt
org.jzy3d.plot3d.builder.delaunay   
org.jzy3d.plot3d.builder.delaunay.jdt   
 

Uses of Triangle_dt in org.jzy3d.plot3d.builder.delaunay
 

Methods in org.jzy3d.plot3d.builder.delaunay that return types with arguments of type Triangle_dt
 java.util.Iterator<Triangle_dt> Triangulation.trianglesIterator()
          computes the current set (vector) of all triangles and return an iterator to them.
 

Uses of Triangle_dt in org.jzy3d.plot3d.builder.delaunay.jdt
 

Fields in org.jzy3d.plot3d.builder.delaunay.jdt declared as Triangle_dt
 Triangle_dt Delaunay_Triangulation.startTriangleHull
           
 

Methods in org.jzy3d.plot3d.builder.delaunay.jdt that return Triangle_dt
 Triangle_dt Delaunay_Triangulation.find(Point_dt p)
          finds the triangle the query point falls in, note if out-side of this triangulation a half plane triangle will be returned (see contains), the search has expected time of O(n^0.5), and it starts form a fixed triangle (this.startTriangle),
 Triangle_dt Delaunay_Triangulation.find(Point_dt p, Triangle_dt start)
          finds the triangle the query point falls in, note if out-side of this triangulation a half plane triangle will be returned (see contains). the search starts from the the start triangle
 Triangle_dt GridIndex.findCellTriangleOf(Point_dt point)
          Finds a triangle near the given point
 Triangle_dt Triangle_dt.next_12()
          returns the consecutive triangle which shares this triangle p1,p2 edge.
 Triangle_dt Triangle_dt.next_23()
          returns the consecutive triangle which shares this triangle p2,p3 edge.
 Triangle_dt Triangle_dt.next_31()
          returns the consecutive triangle which shares this triangle p3,p1 edge.
 

Methods in org.jzy3d.plot3d.builder.delaunay.jdt that return types with arguments of type Triangle_dt
 java.util.Vector<Triangle_dt> Delaunay_Triangulation.findTriangleNeighborhood(Triangle_dt firstTriangle, Point_dt point)
           
 java.util.Iterator<Triangle_dt> Delaunay_Triangulation.getLastUpdatedTriangles()
          returns an iterator object involved in the last update.
 java.util.Iterator<Triangle_dt> Delaunay_Triangulation.trianglesIterator()
          computes the current set (vector) of all triangles and return an iterator to them.
 

Methods in org.jzy3d.plot3d.builder.delaunay.jdt with parameters of type Triangle_dt
 Point_dt[] Delaunay_Triangulation.calcVoronoiCell(Triangle_dt triangle, Point_dt p)
          Calculates a Voronoi cell for a given neighborhood in this triangulation.
 Triangle_dt Delaunay_Triangulation.find(Point_dt p, Triangle_dt start)
          finds the triangle the query point falls in, note if out-side of this triangulation a half plane triangle will be returned (see contains). the search starts from the the start triangle
 java.util.Vector<Triangle_dt> Delaunay_Triangulation.findTriangleNeighborhood(Triangle_dt firstTriangle, Point_dt point)
           
 

Method parameters in org.jzy3d.plot3d.builder.delaunay.jdt with type arguments of type Triangle_dt
 void GridIndex.updateIndex(java.util.Iterator<Triangle_dt> updatedTriangles)
          Updates the grid index to reflect changes to the triangulation.