Package ffx.numerics.quickhull
Class Vertex
java.lang.Object
ffx.numerics.quickhull.Vertex
Represents vertices of the hull, as well as the points from which it is
formed.
- Since:
- 1.0
- Author:
- John E. Lloyd, Fall 2004, Michael J. Schnieders
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Vertex
public Vertex()Constructs a vertex and sets its coordinates to 0. -
Vertex
public Vertex(double x, double y, double z, int idx) Constructs a vertex with the specified coordinates and index.- Parameters:
x
- x-coordinate of the vertexy
- y-coordinate of the vertexz
- z-coordinate of the vertexidx
- index associated with the vertex in an external array
-