Modifier and Type | Method and Description |
---|---|
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 |
Matrix4d.transform(Point3f point)
Transforms the point parameter with this Matrix4d and
places the result back into point.
|
void |
Matrix4f.transform(Point3f point)
Transforms the point parameter with this Matrix4f and
places the result back into point.
|
void |
Matrix4d.transform(Point3f point,
Point3f pointOut)
Transforms the point parameter with this Matrix4d and
places the result into pointOut.
|
void |
Matrix4f.transform(Point3f point,
Point3f pointOut)
Transforms the point parameter with this Matrix4f and
places the result into pointOut.
|
Constructor and Description |
---|
Point3d(Point3f p1)
Constructs and initializes a Point3d from the specified Point3f.
|
Point3f(Point3f p1)
Constructs and initializes a Point3f from the specified Point3f.
|
Copyright © 2023. All rights reserved.