Uses of Class
squidpony.squidmath.DelaunayTriangulator.Edge
Package | Description |
---|---|
squidpony.squidmath |
A very broad package containing random number generators, geometry tools, data structures, and noise functions.
|
-
Uses of DelaunayTriangulator.Edge in squidpony.squidmath
Methods in squidpony.squidmath that return DelaunayTriangulator.Edge Modifier and Type Method Description DelaunayTriangulator.Edge
DelaunayTriangulator. findNearestEdge(CoordDouble point)
Returns the edge from the triangle soup nearest to the specified point.Methods in squidpony.squidmath with parameters of type DelaunayTriangulator.Edge Modifier and Type Method Description 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.CoordDouble
DelaunayTriangulator.Triangle. getNonEdgeVertex(DelaunayTriangulator.Edge edge)
Returns the vertex of this triangle that is not part of the given edge.boolean
DelaunayTriangulator.Triangle. isNeighbor(DelaunayTriangulator.Edge edge)
Returns true if this triangle contains the given edge.