public class Vector3i
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static Vector3i |
UNIT_X
A unit vector along the X axis
|
static Vector3i |
UNIT_Y
A unit vector along the Y axis
|
static Vector3i |
UNIT_Z
A unit vector along the Z axis
|
int |
x
The integer X value of this vector
|
int |
y
The integer Y value of this vector
|
int |
z
The integer Z value of this vector
|
static Vector3i |
ZERO
A vector with values 0, 0, 0
|
Constructor and Description |
---|
Vector3i()
Creates a new Vector3i with default values 0, 0, 0.
|
Vector3i(int x,
int y,
int z)
Creates a new Vector3i with the provided int values.
|
Vector3i(Vector3i copy)
Creates a new Vector3i and copies the X, Y and Z values from the
provided vector.
|
Modifier and Type | Method and Description |
---|---|
Vector3i |
addLocal(int addX,
int addY,
int addZ)
Adds the provided values to the values of this vector.
|
Vector3i |
addLocal(Vector3i other)
Adds the values of the provided vector to the values of this vector.
|
float |
angleBetween(Vector3i other)
Gets the angle between this vector and another vector.
|
Vector3i |
crossLocal(int v2x,
int v2y,
int v2z)
Calculates the cross product of this vector and the provided coordinates.
|
Vector3i |
crossLocal(Vector3i other)
Calculates the cross product of this vector and another vector.
|
float |
distance(int x,
int y,
int z)
Gets the distance between this vector and the provided coordinates.
|
float |
distance(Vector3i other)
Gets the distance between this vector and another vector.
|
float |
distanceSquared(int x,
int y,
int z)
Gets the squared distance between this vector and the provided coordinates.
|
float |
distanceSquared(Vector3i other)
Gets the squared distance between this vector and another Vector3i.
|
Vector3i |
divideLocal(int scalar) |
Vector3i |
divideLocal(Vector3i other) |
float |
dot(int x,
int y,
int z)
Gets the dot product of this vector with the provided coordinates.
|
float |
dot(Vector3i other)
Gets the dot product of this vector with the provided vector.
|
boolean |
equals(int x,
int y,
int z) |
boolean |
equals(java.lang.Object o)
Gets whether or not this vector is equal to another object.
|
int |
getX()
Returns the x value of this vector.
|
int |
getY()
Returns the y value of this vector.
|
int |
getZ()
Returns the z value of this vector.
|
int |
hashCode()
Gets a unique* hash code for this vector, based on its values.
|
boolean |
isOrthogonal(int x,
int y,
int z)
Checks if this vector is orthogonal to another vector (i.e. the angle
between both vectors is ~ 90° degree).
|
boolean |
isOrthogonal(Vector3i other)
Checks if this vector is orthogonal to another vector (i.e. the angle
between both vectors is ~ 90° degree).
|
boolean |
isUnitVector()
Checks if this vector is a unit vector.
|
float |
length()
Gets the length of this vector.
|
float |
lengthSquared()
Gets the squared length of this vector.
|
Vector3i |
multLocal(int scalar)
Multiplies the values of this vector with the provided scalar.
|
Vector3i |
multLocal(int multX,
int multY,
int multZ)
Multiplies the values of this vector with the provided values.
|
Vector3i |
multLocal(Vector3i other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector3i |
negateLocal()
Negates all values of this vector.
|
Vector3i |
normalizeLocal()
Normalizes this vector (i.e. turn it into a unit vector).
|
Vector3i |
set(int x,
int y,
int z)
Sets the x, y and z values of this vector to the provided int values.
|
Vector3i |
set(Vector3i vector)
Sets the x, y and z values of this vector to the values of the
provided vector.
|
Vector3i |
setX(int x)
Sets the x value of this vector.
|
Vector3i |
setY(int y)
Sets the y value of this vector.
|
Vector3i |
setZ(int z)
Sets the z value of this vector.
|
Vector3i |
subtractLocal(int subtractX,
int subtractY,
int subtractZ)
Subtracts the provided values from the values of this vector.
|
Vector3i |
subtractLocal(Vector3i other)
Subtracts the values of the provided vector from the values of this vector.
|
java.lang.String |
toString()
Gets a String representation of this vector, for example
(23, -5) |
Vector3i |
zero()
Sets all values to 0 (same set
set(0, 0, 0); ). |
public static final Vector3i ZERO
public static final Vector3i UNIT_X
public static final Vector3i UNIT_Y
public static final Vector3i UNIT_Z
public int x
public int y
public int z
public Vector3i()
public Vector3i(int x, int y, int z)
x
- the x value of the vector.y
- the y value of the vector.z
- the z value of the vector.public Vector3i(Vector3i copy)
copy
- the Vector3i to copy.public Vector3i set(Vector3i vector)
vector
- the Vector3i to copy.public Vector3i set(int x, int y, int z)
x
- the x value.y
- the y value.z
- the z value.public Vector3i setX(int x)
x
- the new x value.public Vector3i setY(int y)
y
- the new y value.public Vector3i setZ(int z)
z
- the new z value.public int getX()
public int getY()
public int getZ()
public float dot(Vector3i other)
other
- the vector to calculate the dot product with.public float dot(int x, int y, int z)
x
- the x coordinate.y
- the y coordinate.z
- the z coordinate.public float length()
lengthSquared()
public float lengthSquared()
length()
public float distance(Vector3i other)
other
- the other vector.distanceSquared(Vector3i)
public float distance(int x, int y, int z)
x
- the other x coordinate.y
- the other y coordinate.z
- the other z coordinate.distanceSquared(int, int, int)
public float distanceSquared(Vector3i other)
other
- the other Vector3i.public float distanceSquared(int x, int y, int z)
x
- the other x coordinate.y
- the other y coordinate.z
- the other z coordinate.public Vector3i addLocal(Vector3i other)
other
- the vector to add.public Vector3i addLocal(int addX, int addY, int addZ)
addX
- the x value to add.addY
- the y value to add.addZ
- the z value to add.public Vector3i subtractLocal(Vector3i other)
other
- the vector to subtract.public Vector3i subtractLocal(int subtractX, int subtractY, int subtractZ)
subtractX
- the x value to subtract.subtractY
- the y value to subtract.subtractZ
- the z value to subtract.public Vector3i multLocal(int scalar)
scalar
- the value to multiply this vector by.public Vector3i multLocal(Vector3i other)
other
- the vector to multiply.public Vector3i multLocal(int multX, int multY, int multZ)
multX
- the x value to multiply the x coordinate of this vector by.multY
- the y value to multiply the y coordinate of this vector by.multZ
- the z value to multiply the z coordinate of this vector by.public Vector3i divideLocal(int scalar)
public Vector3i negateLocal()
public Vector3i crossLocal(Vector3i other)
other
- the other vector.public Vector3i crossLocal(int v2x, int v2y, int v2z)
v2x
- the other x coordinate.v2y
- the other y coordinate.v2z
- the other z coordinate.public Vector3i normalizeLocal()
public float angleBetween(Vector3i other)
other
- the other vector (unit vector).public Vector3i zero()
set(0, 0, 0);
).public boolean isUnitVector()
public boolean isOrthogonal(Vector3i other)
other
- the other vector.public boolean isOrthogonal(int x, int y, int z)
x
- the x coordinate of the other vector.y
- the y coordinate of the other vector.z
- the z coordinate of the other vector.public boolean equals(java.lang.Object o)
Vector3i
and if it
has exactly the same x, y and z values.equals
in class java.lang.Object
o
- the object to compare to equality.Vector3i
and has the
same values as this vector, false if not.public boolean equals(int x, int y, int z)
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
(23, -5)
toString
in class java.lang.Object