edu.jhu.ece.iacl.jist.structures.geom
Class Point3

java.lang.Object
  extended by Point3f
      extended by edu.jhu.ece.iacl.jist.structures.geom.Point3
Direct Known Subclasses:
Vertex

public class Point3
extends Point3f

The Class Point3.

Author:
Blake Lucas

Constructor Summary
Point3()
          Instantiates a new point3.
Point3(double[] d)
          Instantiates a new point3.
Point3(double x, double y, double z)
          Instantiates a new point3.
Point3(float x, float y, float z)
          Instantiates a new point3.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Point3

public Point3()
Instantiates a new point3.


Point3

public Point3(double x,
              double y,
              double z)
Instantiates a new point3.

Parameters:
x - the x
y - the y
z - the z

Point3

public Point3(float x,
              float y,
              float z)
Instantiates a new point3.

Parameters:
x - the x
y - the y
z - the z

Point3

public Point3(double[] d)
Instantiates a new point3.

Parameters:
d - the d
Method Detail

toString

public java.lang.String toString()