Class PVectors3I
java.lang.Object
com.io7m.jtensors.core.parameterized.vectors.PVectors3I
public final class PVectors3I
extends java.lang.Object
Functions over PVector3I values.
See "Mathematics for 3D Game Programming and Computer Graphics" 2nd Ed for the derivations of most of the code in this class (ISBN: 1-58450-277-0).
- Since:
- 8.0.0
-
Method Summary
Modifier and Type Method Description static <T> PVector3I<T>absolute(PVector3I<T> v0)Calculate the absolute ofv0.static <T> PVector3I<T>add(PVector3I<T> v0, PVector3I<T> v1)Addv0tov1.static <T> PVector3I<T>addScaled(PVector3I<T> v0, PVector3I<T> v1, double r)Addv0tov1 * r.static <T> PVector3I<T>clamp(PVector3I<T> v, PVector3I<T> v_min, PVector3I<T> v_max)Clamp the values invbyv_minandv_max.static <T> PVector3I<T>crossProduct(PVector3I<T> v0, PVector3I<T> v1)Calculate the cross product of the vectorsv0andv1.static <T> longdistance(PVector3I<T> v0, PVector3I<T> v1)Calculate the distance betweenv0andv1.static <T> longdotProduct(PVector3I<T> v0, PVector3I<T> v1)Calculate the scalar product of the vectorsv0andv1.static <T> PVector3I<T>interpolateBilinear(PVector3I<T> x0y0, PVector3I<T> x1y0, PVector3I<T> x0y1, PVector3I<T> x1y1, double px, double py)Bilinearly interpolate betweenx0y0,x1y0,x0y1,x1y1.static <T> PVector3I<T>interpolateLinear(PVector3I<T> v0, PVector3I<T> v1, double alpha)Linearly interpolate betweenv0andv1by the amountalpha.static <T> doublemagnitude(PVector3I<T> v0)Calculate the magnitude of the vectorv0.static <T> longmagnitudeSquared(PVector3I<T> v0)Calculate the squared magnitude of the vectorv0.static <T> PVector3I<T>multiply(PVector3I<T> v0, PVector3I<T> v1)Multiplyv0byv1.static <T> PVector3I<T>negate(PVector3I<T> v)Calculate the negation ofv.static <T> PVector3I<T>scale(PVector3I<T> v0, double r)Scalev0byr.static <T> PVector3I<T>subtract(PVector3I<T> v0, PVector3I<T> v1)Subtractv1fromv0.static <A> PVector3I<A>toParameterized(Vector3I v)static <A> Vector3ItoUnparameterized(PVector3I<A> v)static <T> PVector3I<T>zero()The zero vector.
-
Method Details
-
absolute
Calculate the absolute ofv0.- Type Parameters:
T- A phantom type parameter * @param v0 The vector- Returns:
(abs v0.x, abs v0.y, abs v0.z)
-
add
Addv0tov1.- Type Parameters:
T- A phantom type parameter * @param v0 The left vector- Parameters:
v1- The right vector- Returns:
(v0.x + v1.x, v0.y + v1.y, v0.z + v1.z)
-
multiply
Multiplyv0byv1.- Type Parameters:
T- A phantom type parameter * @param v0 The left vector- Parameters:
v1- The right vector- Returns:
(v0.x * v1.x, v0.y * v1.y, v0.z * v1.z)- Since:
- 10.0.0
-
addScaled
Addv0tov1 * r.- Type Parameters:
T- A phantom type parameter * @param v0 The left vector- Parameters:
v1- The right vectorr- The scaling value- Returns:
(v0.x + (v1.x * r), v0.y + (v1.y * r), v0.z + (v1.z * r))
-
clamp
Clamp the values invbyv_minandv_max.- Type Parameters:
T- A phantom type parameter * @param v The source vector- Parameters:
v_min- The minimum vectorv_max- The maximum vector- Returns:
(max(min(v.x, v_max.x()), v_min.x()), max(min(v.y, v_max.y()), v_min.y()), max(min(v.z, v_max.z()), v_min.z()))
-
crossProduct
Calculate the cross product of the vectorsv0andv1.- Type Parameters:
T- A phantom type parameter * @param v0 The left vector- Parameters:
v1- The right vector- Returns:
- The cross product of the two vectors
-
distance
Calculate the distance betweenv0andv1.- Type Parameters:
T- A phantom type parameter * @param v0 The left vector- Parameters:
v1- The right vector- Returns:
- The distance between
v0andv1.
-
dotProduct
Calculate the scalar product of the vectorsv0andv1.- Type Parameters:
T- A phantom type parameter * @param v0 The left vector- Parameters:
v1- The right vector- Returns:
- The scalar product of the two vectors
-
interpolateLinear
Linearly interpolate between
v0andv1by the amountalpha.The
alphaparameter controls the degree of interpolation, such that:interpolateLinear(v0, v1, 0.0) = v0interpolateLinear(v0, v1, 1.0) = v1
- Type Parameters:
T- A phantom type parameter * @return((1 - alpha) * v0) + (alpha * v1)- Parameters:
v0- The left input vectorv1- The right input vectoralpha- The interpolation value in the range[0, 1]
-
interpolateBilinear
public static <T> PVector3I<T> interpolateBilinear(PVector3I<T> x0y0, PVector3I<T> x1y0, PVector3I<T> x0y1, PVector3I<T> x1y1, double px, double py)Bilinearly interpolate between
x0y0,x1y0,x0y1,x1y1.The
pxandpyparameters control the degree of interpolation, such that:interpolateBilinear(x0y0, x1y0, x0y1, x1y1, 0.0, 0.0) = x0y0interpolateBilinear(x0y0, x1y0, x0y1, x1y1, 1.0, 0.0) = x1y0interpolateBilinear(x0y0, x1y0, x0y1, x1y1, 0.0, 1.0) = x0y1interpolateBilinear(x0y0, x1y0, x0y1, x1y1, 1.0, 1.0) = x1y1
- Type Parameters:
T- A phantom type parameter * @return The bilinearly interpolated value- Parameters:
x0y0- The top left input vectorx1y0- The top right input vectorx0y1- The bottom left input vectorx1y1- The bottom right input vectorpx- The X interpolation value in the range[0, 1]py- The Y interpolation value in the range[0, 1]
-
magnitudeSquared
Calculate the squared magnitude of the vectorv0.- Type Parameters:
T- A phantom type parameter * @param v0 The vector- Returns:
- The squared magnitude of the vector
-
magnitude
Calculate the magnitude of the vectorv0.- Type Parameters:
T- A phantom type parameter * @param v0 The vector- Returns:
- The magnitude of the vector
-
negate
Calculate the negation ofv.- Type Parameters:
T- A phantom type parameter * @param v The vector- Returns:
(-v.x, -v.y, -v.z)
-
scale
Scalev0byr.- Type Parameters:
T- A phantom type parameter * @param v0 The left vector- Parameters:
r- The scaling value- Returns:
(v0.x * r, v0.y * r, v0.z * r)
-
subtract
Subtractv1fromv0.- Type Parameters:
T- A phantom type parameter * @param v0 The left vector- Parameters:
v1- The right vector- Returns:
(v0.x - v1.x, v0.y - v1.y, v0.z - v1.z)
-
zero
The zero vector.- Type Parameters:
T- A phantom type parameter- Returns:
(0, 0, 0)
-
toUnparameterized
- Type Parameters:
A- A phantom type parameter (possibly representing a coordinate system)- Parameters:
v- The input vector- Returns:
- A vector equal to
mbut without type parameters
-
toParameterized
- Type Parameters:
A- A phantom type parameter (possibly representing a coordinate system)- Parameters:
v- The input vector- Returns:
- A vector equal to
vwith type parameters
-