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