public class VectorM2L extends Object implements VectorReadable2LType, VectorWritable2LType
A two-dimensional mutable vector type with integer elements.
Values of this type cannot be accessed safely from multiple threads without explicit synchronization.
| Constructor and Description |
|---|
VectorM2L()
Default constructor, initializing the vector with values
[0, 0, 0]. |
VectorM2L(long in_x,
long in_y)
Construct a vector initialized with the given values.
|
VectorM2L(VectorReadable2LType in_v)
Construct a vector initialized with the values given in the vector
in_v. |
| Modifier and Type | Method and Description |
|---|---|
static VectorM2L |
absolute(VectorReadable2LType v,
VectorM2L out)
Calculate the absolute values of the elements in vector
v,
saving the result to out. |
static VectorM2L |
absoluteInPlace(VectorM2L v)
Calculate the absolute values of the elements in vector
v,
saving the result to v. |
static VectorM2L |
add(VectorReadable2LType v0,
VectorReadable2LType v1,
VectorM2L out)
Calculate the element-wise sum of the vectors
v0 and
v1, saving the result to out. |
static VectorM2L |
addInPlace(VectorM2L v0,
VectorReadable2LType v1)
Calculate the element-wise sum of the vectors
v0 and
v1, saving the result to v0. |
static VectorM2L |
addScaled(VectorReadable2LType v0,
VectorReadable2LType v1,
double r,
VectorM2L out)
Calculate the element-wise sum of the vectors
v0 and the
element-wise product of v1 and r, saving the
result to out. |
static VectorM2L |
addScaledInPlace(VectorM2L v0,
VectorReadable2LType v1,
double r)
Calculate the element-wise sum of the vectors
v0 and the
element-wise product of v1 and r, saving the
result to v0. |
static double |
angle(VectorReadable2LType v0,
VectorReadable2LType v1)
Calculate the angle between vectors
v0 and v1,
in radians. |
static VectorM2L |
clamp(VectorReadable2LType v,
long minimum,
long maximum,
VectorM2L out)
Clamp the elements of the vector
v to the range
[minimum .. |
static VectorM2L |
clampByVector(VectorReadable2LType v,
VectorReadable2LType minimum,
VectorReadable2LType maximum,
VectorM2L out)
Clamp the elements of the vector
v to the inclusive range
given by the corresponding elements in minimum and
maximum, saving the result to out. |
static VectorM2L |
clampByVectorInPlace(VectorM2L v,
VectorReadable2LType minimum,
VectorReadable2LType maximum)
Clamp the elements of the vector
v to the inclusive range
given by the corresponding elements in minimum and
maximum, saving the result to v. |
static VectorM2L |
clampInPlace(VectorM2L v,
long minimum,
long maximum)
Clamp the elements of the vector
v to the range
[minimum .. |
static VectorM2L |
clampMaximum(VectorReadable2LType v,
long maximum,
VectorM2L out)
Clamp the elements of the vector
v to the range
[-Infinity .. |
static VectorM2L |
clampMaximumByVector(VectorReadable2LType v,
VectorReadable2LType maximum,
VectorM2L out)
Clamp the elements of the vector
v to the inclusive range
given by the corresponding elements in maximum, saving the
result to out. |
static VectorM2L |
clampMaximumByVectorInPlace(VectorM2L v,
VectorReadable2LType maximum)
Clamp the elements of the vector
v to the inclusive range
given by the corresponding elements in maximum, saving the
result to v. |
static VectorM2L |
clampMaximumInPlace(VectorM2L v,
long maximum)
Clamp the elements of the vector
v to the range
[-Infinity .. |
static VectorM2L |
clampMinimum(VectorReadable2LType v,
long minimum,
VectorM2L out)
Clamp the elements of the vector
v to the range
[minimum .. |
static VectorM2L |
clampMinimumByVector(VectorReadable2LType v,
VectorReadable2LType minimum,
VectorM2L out)
Clamp the elements of the vector
v to the inclusive range
given by the corresponding elements in minimum, saving the
result to out. |
static VectorM2L |
clampMinimumByVectorInPlace(VectorM2L v,
VectorReadable2LType minimum)
Clamp the elements of the vector
v to the inclusive range
given by the corresponding elements in minimum, saving the
result to v. |
static VectorM2L |
clampMinimumInPlace(VectorM2L v,
long minimum)
Clamp the elements of the vector
v to the range
[minimum .. |
static <T extends VectorWritable2LType> |
copy(VectorReadable2LType input,
T output)
Copy all elements of the vector
input to the vector
output. |
void |
copyFrom2L(VectorReadable2LType in_v)
Set the current vector to the contents of the input vector.
|
static long |
distance(VectorReadable2LType v0,
VectorReadable2LType v1)
Calculate the distance between the two vectors
v0 and
v1. |
static long |
dotProduct(VectorReadable2LType v0,
VectorReadable2LType v1)
Calculate the scalar product of the vectors
v0 and
v1. |
boolean |
equals(Object obj) |
long |
getXL() |
long |
getYL() |
int |
hashCode() |
static VectorM2L |
interpolateLinear(VectorReadable2LType v0,
VectorReadable2LType v1,
double alpha,
VectorM2L r)
Linearly interpolate between
v0 and v1 by the
amount alpha, saving the result to r. |
static long |
magnitude(VectorReadable2LType v)
Calculate the magnitude of the vector
v. |
static long |
magnitudeSquared(VectorReadable2LType v)
Calculate the squared magnitude of the vector
v. |
static VectorM2L |
projection(VectorReadable2LType p,
VectorReadable2LType q,
VectorM2L r)
Calculate the projection of the vector
p onto the vector
q, saving the result in r. |
static VectorM2L |
scale(VectorReadable2LType v,
double r,
VectorM2L out)
Scale the vector
v by the scalar r, saving the
result to out. |
static VectorM2L |
scaleInPlace(VectorM2L v,
long r)
Scale the vector
v by the scalar r, saving the
result to v. |
void |
set2L(long in_x,
long in_y)
Set the current
x and y values of the current
vector. |
void |
setXL(long in_x)
Set the current
x value of the current vector. |
void |
setYL(long in_y)
Set the current
y value of the current vector. |
static VectorM2L |
subtract(VectorReadable2LType v0,
VectorReadable2LType v1,
VectorM2L out)
Subtract the vector
v1 from the vector v0,
saving the result to out. |
static VectorM2L |
subtractInPlace(VectorM2L v0,
VectorReadable2LType v1)
Subtract the vector
v1 from the vector v0,
saving the result to v0. |
String |
toString() |
public VectorM2L()
[0, 0, 0].public VectorM2L(long in_x,
long in_y)
in_x - The x valuein_y - The y valuepublic VectorM2L(VectorReadable2LType in_v)
in_v.in_v - The source vectorpublic static final VectorM2L absolute(VectorReadable2LType v, VectorM2L out) throws ArithmeticException
v,
saving the result to out.v - The input vectorout - The output vector(abs v.x, abs v.y, abs v.z)ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L absoluteInPlace(VectorM2L v) throws ArithmeticException
v,
saving the result to v.v - The input vector(abs v.x, abs v.y, abs v.z)ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L add(VectorReadable2LType v0, VectorReadable2LType v1, VectorM2L out) throws ArithmeticException
v0 and
v1, saving the result to out.v0 - The left input vectorv1 - The right input vectorout - The output vector(v0.x + v1.x, v0.y + v1.y, v0.z + v1.z)ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L addInPlace(VectorM2L v0, VectorReadable2LType v1) throws ArithmeticException
v0 and
v1, saving the result to v0.v0 - The left input vectorv1 - The right input vector(v0.x + v1.x, v0.y + v1.y, v0.z + v1.z)ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L addScaled(VectorReadable2LType v0, VectorReadable2LType v1, double r, VectorM2L out) throws ArithmeticException
v0 and the
element-wise product of v1 and r, saving the
result to out.v0 - The left input vectorv1 - The right input vectorout - The output vectorr - The scaling value(v0.x + (v1.x * r), v0.y + (v1.y * r), v0.z + (v1.z * r))ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L addScaledInPlace(VectorM2L v0, VectorReadable2LType v1, double r) throws ArithmeticException
v0 and the
element-wise product of v1 and r, saving the
result to v0.v0 - The left input vectorv1 - The right input vectorr - The scaling value(v0.x + (v1.x * r), v0.y + (v1.y * r), v0.z + (v1.z * r))ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final double angle(VectorReadable2LType v0, VectorReadable2LType v1)
v0 and v1,
in radians.v0 - The left input vectorv1 - The right input vectorpublic static final VectorM2L clamp(VectorReadable2LType v, long minimum, long maximum, VectorM2L out)
v to the range
[minimum .. maximum] inclusive, saving the result to
out.v - The input vectorminimum - The minimum allowed valuemaximum - The maximum allowed valueout - The output vectormaximum
and at least minimumpublic static final VectorM2L clampByVector(VectorReadable2LType v, VectorReadable2LType minimum, VectorReadable2LType maximum, VectorM2L out)
v to the inclusive range
given by the corresponding elements in minimum and
maximum, saving the result to out.v - The input vectorminimum - The vector containing the minimum acceptable valuesmaximum - The vector containing the maximum acceptable valuesout - The output vector(min(max(v.x, minimum.x), maximum.x), min(max(v.y, minimum.y), maximum.y), min(max(v.z, minimum.z), maximum.z))public static final VectorM2L clampByVectorInPlace(VectorM2L v, VectorReadable2LType minimum, VectorReadable2LType maximum)
v to the inclusive range
given by the corresponding elements in minimum and
maximum, saving the result to v.v - The input vectorminimum - The vector containing the minimum acceptable valuesmaximum - The vector containing the maximum acceptable values(min(max(v.x, minimum.x), maximum.x), min(max(v.y, minimum.y), maximum.y), min(max(v.z, minimum.z), maximum.z))public static final VectorM2L clampInPlace(VectorM2L v, long minimum, long maximum)
v to the range
[minimum .. maximum] inclusive, saving the result to
v.v - The input vectorminimum - The minimum allowed valuemaximum - The maximum allowed valuemaximum
and at least minimum, in vpublic static final VectorM2L clampMaximum(VectorReadable2LType v, long maximum, VectorM2L out)
v to the range
[-Infinity .. maximum] inclusive, saving the result to
out.v - The input vectorout - The output vectormaximum - The maximum allowed valuemaximumpublic static final VectorM2L clampMaximumByVector(VectorReadable2LType v, VectorReadable2LType maximum, VectorM2L out)
v to the inclusive range
given by the corresponding elements in maximum, saving the
result to out.v - The input vectormaximum - The vector containing the maximum acceptable valuesout - The output vector(min(v.x, maximum.x), min(v.y, maximum.y), min(v.z, maximum.z))public static final VectorM2L clampMaximumByVectorInPlace(VectorM2L v, VectorReadable2LType maximum)
v to the inclusive range
given by the corresponding elements in maximum, saving the
result to v.v - The input vectormaximum - The vector containing the maximum acceptable values(min(v.x, maximum.x), min(v.y, maximum.y), min(v.z, maximum.z))public static final VectorM2L clampMaximumInPlace(VectorM2L v, long maximum)
v to the range
[-Infinity .. maximum] inclusive, saving the result to
v.v - The input vectormaximum - The maximum allowed valuemaximum
, in vpublic static final VectorM2L clampMinimum(VectorReadable2LType v, long minimum, VectorM2L out)
v to the range
[minimum .. Infinity] inclusive, saving the result to
out.v - The input vectorout - The output vectorminimum - The minimum allowed valueminimumpublic static final VectorM2L clampMinimumByVector(VectorReadable2LType v, VectorReadable2LType minimum, VectorM2L out)
v to the inclusive range
given by the corresponding elements in minimum, saving the
result to out.v - The input vectorout - The output vectorminimum - The vector containing the minimum acceptable values(max(v.x, minimum.x), max(v.y, minimum.y), max(v.z, minimum.z))public static final VectorM2L clampMinimumByVectorInPlace(VectorM2L v, VectorReadable2LType minimum)
v to the inclusive range
given by the corresponding elements in minimum, saving the
result to v.v - The input vectorminimum - The vector containing the minimum acceptable values(max(v.x, minimum.x), max(v.y, minimum.y), max(v.z, minimum.z))
, in vpublic static final VectorM2L clampMinimumInPlace(VectorM2L v, long minimum)
v to the range
[minimum .. Infinity] inclusive, saving the result to
v.v - The input vectorminimum - The minimum allowed valueminimum, in v.public static final <T extends VectorWritable2LType> T copy(VectorReadable2LType input, T output)
input to the vector
output.T - The specific vector typeinput - The input vectoroutput - The output vectorpublic static final long distance(VectorReadable2LType v0, VectorReadable2LType v1) throws ArithmeticException
v0 and
v1.v0 - The left input vectorv1 - The right input vectorArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final long dotProduct(VectorReadable2LType v0, VectorReadable2LType v1) throws ArithmeticException
v0 and
v1.v0 - The left input vectorv1 - The right input vectorArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L interpolateLinear(VectorReadable2LType v0, VectorReadable2LType v1, double alpha, VectorM2L r) throws ArithmeticException
v0 and v1 by the
amount alpha, saving the result to r.
The alpha parameter controls the degree of interpolation,
such that:
interpolateLinear(v0, v1, 0.0, r) -> r = v0interpolateLinear(v0, v1, 1.0, r) -> r = v1v0 - The left input vector.v1 - The right input vector.alpha - The interpolation value, between 0.0 and
1.0.r - The result vector.rArithmeticException - Iff an internal arithmetic operation causes an integer
overflow.public static final long magnitude(VectorReadable2LType v) throws ArithmeticException
v.
Correspondingly, magnitude(normalize(v)) == 1.0.v - The input vectorArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final long magnitudeSquared(VectorReadable2LType v) throws ArithmeticException
v.v - The input vectorArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L projection(VectorReadable2LType p, VectorReadable2LType q, VectorM2L r) throws ArithmeticException
p onto the vector
q, saving the result in r.p - The left vectorq - The right vectorr - The output vector((dotProduct p q) / magnitudeSquared q) * qArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L scale(VectorReadable2LType v, double r, VectorM2L out) throws ArithmeticException
v by the scalar r, saving the
result to out.v - The input vectorr - The scaling valueout - The output vector(v.x * r, v.y * r, v.z * r)ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L scaleInPlace(VectorM2L v, long r) throws ArithmeticException
v by the scalar r, saving the
result to v.v - The input vectorr - The scaling value(v.x * r, v.y * r, v.z * r)ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L subtract(VectorReadable2LType v0, VectorReadable2LType v1, VectorM2L out) throws ArithmeticException
v1 from the vector v0,
saving the result to out.v0 - The left input vectorv1 - The right input vectorout - The output vector(v0.x - v1.x, v0.y - v1.y, v0.z - v1.z)ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic static final VectorM2L subtractInPlace(VectorM2L v0, VectorReadable2LType v1) throws ArithmeticException
v1 from the vector v0,
saving the result to v0.v0 - The left input vectorv1 - The right input vector(v0.x - v1.x, v0.y - v1.y, v0.z - v1.z)ArithmeticException - Iff an internal arithmetic operation causes an integer overflowpublic final void copyFrom2L(VectorReadable2LType in_v)
VectorWritable2LTypecopyFrom2L in interface VectorWritable2LTypein_v - The input vectorpublic final long getXL()
getXL in interface VectorReadable2LTypepublic final long getYL()
getYL in interface VectorReadable2LTypepublic final void set2L(long in_x,
long in_y)
VectorWritable2LTypex and y values of the current
vector.set2L in interface VectorWritable2LTypein_x - The new x value.in_y - The new y value.public final void setXL(long in_x)
VectorWritable2LTypex value of the current vector.setXL in interface VectorWritable2LTypein_x - The new x value.public final void setYL(long in_y)
VectorWritable2LTypey value of the current vector.setYL in interface VectorWritable2LTypein_y - The new y value.Copyright © 2015 <code@io7m.com> http://io7m.com