public class TriangulationDSVertex_3<X extends Point_3>
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
tag |
Constructor and Description |
---|
TriangulationDSVertex_3()
creates an empty vertex, with no associated geometric point.
|
TriangulationDSVertex_3(TriangulationDSCell_3<X> c,
X point)
creates a vertex with an associated geometric point and an associated cell.
|
TriangulationDSVertex_3(X point)
creates a vertex with an associated geometric point.
|
Modifier and Type | Method and Description |
---|---|
TriangulationDSCell_3<X> |
getCell()
returns the cell associated with the vertex.
|
X |
getPoint()
returns the geometric point associated with the vertex.
|
void |
setCell(TriangulationDSCell_3<X> c)
sets the cell associated with the vertex.
|
void |
setPoint(X point)
sets the geometric point associated with the vertex.
|
java.lang.String |
toString()
returns a string listing the coordinates of the geometric point associated with the vertex.
|
public TriangulationDSVertex_3()
public TriangulationDSVertex_3(X point)
point
- public TriangulationDSVertex_3(TriangulationDSCell_3<X> c, X point)
public void setCell(TriangulationDSCell_3<X> c)
public void setPoint(X point)
public X getPoint()
public TriangulationDSCell_3<X> getCell()
public java.lang.String toString()
toString
in class java.lang.Object