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