Uses of Class
org.locationtech.jts.math.Vector3D
-
Packages that use Vector3D Package Description org.locationtech.jts.math -
-
Uses of Vector3D in org.locationtech.jts.math
Methods in org.locationtech.jts.math that return Vector3D Modifier and Type Method Description Vector3D
Vector3D. add(Vector3D v)
Computes a vector which is the sum of this vector and the given vector.static Vector3D
Vector3D. create(double x, double y, double z)
Creates a new vector with given X, Y and Z components.static Vector3D
Vector3D. create(Coordinate coord)
Creates a vector from a 3DCoordinate
.Vector3D
Vector3D. divide(double d)
Creates a new vector which has the same direction and with length equals to the length of this vector divided by the scalar valued
.Vector3D
Vector3D. normalize()
Computes a vector having identical direction but normalized to have length 1.Vector3D
Vector3D. subtract(Vector3D v)
Computes a vector which is the difference of this vector and the given vector.Methods in org.locationtech.jts.math with parameters of type Vector3D Modifier and Type Method Description Vector3D
Vector3D. add(Vector3D v)
Computes a vector which is the sum of this vector and the given vector.double
Vector3D. dot(Vector3D v)
Computes the dot-product of two vectorsVector3D
Vector3D. subtract(Vector3D v)
Computes a vector which is the difference of this vector and the given vector.Constructors in org.locationtech.jts.math with parameters of type Vector3D Constructor Description Plane3D(Vector3D normal, Coordinate basePt)
-