Uses of Class
javax.vecmath.Point3f

Uses of Point3f in javax.vecmath
 

Methods in javax.vecmath with parameters of type Point3f
 float Point3f.distance(Point3f p1)
          Computes the distance between this point and point p1.
 float Point3f.distanceL1(Point3f p1)
          Computes the L-1 (Manhattan) distance between this point and point p1.
 float Point3f.distanceLinf(Point3f p1)
          Computes the L-infinite distance between this point and point p1.
 float Point3f.distanceSquared(Point3f p1)
          Computes the square of the distance between this point and point p1.
 void Matrix4f.transform(Point3f point)
          Transforms the point parameter with this Matrix4f and places the result back into point.
 void Matrix4d.transform(Point3f point)
          Transforms the point parameter with this Matrix4d and places the result back into point.
 void Matrix4f.transform(Point3f point, Point3f pointOut)
          Transforms the point parameter with this Matrix4f and places the result into pointOut.
 void Matrix4d.transform(Point3f point, Point3f pointOut)
          Transforms the point parameter with this Matrix4d and places the result into pointOut.
 

Constructors in javax.vecmath with parameters of type Point3f
Point3d(Point3f p1)
          Constructs and initializes a Point3d from the specified Point3f.
Point3f(Point3f p1)
          Constructs and initializes a Point3f from the specified Point3f.