JavaCAD
Point3d.java
Go to the documentation of this file.
1 
14 package eu.mihosoft.vrl.v3d.ext.quickhull3d;
15 
16 // TODO: Auto-generated Javadoc
28 public class Point3d extends Vector3d
29 {
33  public Point3d ()
34  {
35  }
36 
42  public Point3d (Vector3d v)
43  {
44  set (v);
45  }
46 
54  public Point3d (double x, double y, double z)
55  {
56  set (x, y, z);
57  }
58 }
Point3d(double x, double y, double z)
Definition: Point3d.java:54