Uses of Class
squidpony.squidmath.DelaunayTriangulator.Triangle
Package | Description |
---|---|
squidpony.squidmath |
A very broad package containing random number generators, geometry tools, data structures, and noise functions.
|
-
Uses of DelaunayTriangulator.Triangle in squidpony.squidmath
Methods in squidpony.squidmath that return DelaunayTriangulator.Triangle Modifier and Type Method Description DelaunayTriangulator.Triangle
DelaunayTriangulator. findContainingTriangle(CoordDouble point)
Returns the triangle from this triangle soup that contains the specified point or null if no triangle from the triangle soup contains the point.DelaunayTriangulator.Triangle
DelaunayTriangulator. findNeighbor(DelaunayTriangulator.Triangle triangle, CoordDouble ea, CoordDouble eb)
DelaunayTriangulator.Triangle
DelaunayTriangulator. findNeighbor(DelaunayTriangulator.Triangle triangle, DelaunayTriangulator.Edge edge)
Returns the neighbor triangle of the specified triangle sharing the same edge as specified.DelaunayTriangulator.Triangle
DelaunayTriangulator. findOneTriangleSharing(DelaunayTriangulator.Edge edge)
Returns one of the possible triangles sharing the specified edge.Methods in squidpony.squidmath that return types with arguments of type DelaunayTriangulator.Triangle Modifier and Type Method Description ArrayList<DelaunayTriangulator.Triangle>
DelaunayTriangulator. getTriangles()
Returns the triangles of the triangulation in form of a list of 2D triangles.ArrayList<DelaunayTriangulator.Triangle>
DelaunayTriangulator. triangulate()
This method generates a Delaunay triangulation from the specified point set.Methods in squidpony.squidmath with parameters of type DelaunayTriangulator.Triangle Modifier and Type Method Description DelaunayTriangulator.Triangle
DelaunayTriangulator. findNeighbor(DelaunayTriangulator.Triangle triangle, CoordDouble ea, CoordDouble eb)
DelaunayTriangulator.Triangle
DelaunayTriangulator. findNeighbor(DelaunayTriangulator.Triangle triangle, DelaunayTriangulator.Edge edge)
Returns the neighbor triangle of the specified triangle sharing the same edge as specified.