JavaCAD
Vertex.java
Go to the documentation of this file.
1 package eu.mihosoft.vrl.v3d.ext.quickhull3d;
2 
3 // TODO: Auto-generated Javadoc
10 class Vertex
11 {
15  Point3d pnt;
16 
20  int index;
21 
25  Vertex prev;
26 
30  Vertex next;
31 
35  Face face;
36 
40  public Vertex()
41  { pnt = new Point3d();
42  }
43 
53  public Vertex (double x, double y, double z, int idx)
54  {
55  pnt = new Point3d(x, y, z);
56  index = idx;
57  }
58 
59 }