Uses of Class
keps.math.Point3

Packages that use Point3
keps.math   
 

Uses of Point3 in keps.math
 

Methods in keps.math with parameters of type Point3
 void Point3.add(Point3 point, Vector3 vector)
          Add a Vector3 to a Point3 and store the result in this Point3
 double Point3.distance(Point3 other)
          Returns the distance from this Point3 to other
 double Point3.distanceSquared(Point3 other)
          Returns the squared distance from this Point3 to other
 void Vector3.sub(Point3 p1, Point3 p2)
          Subtract one Point3 from another Point3 and set as this Vector
 void Point3.sub(Point3 point, Vector3 vector)
          Subtract a Vector3 from a Point3 and store the result in this Point3
 

Constructors in keps.math with parameters of type Point3
Point3(Point3 newTuple)
          Copy constructor.