Package | Description |
---|---|
net.risingworld.api.utils | |
net.risingworld.api.worldelements |
Modifier and Type | Field and Description |
---|---|
static Vector2f |
Vector2f.UNIT_X
A unit vector along the X axis
|
static Vector2f |
Vector2f.UNIT_Y
A unit vector along the Y axis
|
static Vector2f |
Vector2f.ZERO
A vector with values 0, 0
|
Modifier and Type | Method and Description |
---|---|
Vector2f |
Vector2f.addLocal(float addX,
float addY)
Adds the provided values to the values of this vector.
|
Vector2f |
Vector2f.addLocal(Vector2f other)
Adds the values of the provided vector to the values of this vector.
|
Vector2f |
Vector2f.divideLocal(float scalar) |
Vector2f |
Vector2f.divideLocal(Vector2f other) |
Vector2f |
Vector2f.multLocal(float scalar)
Multiplies the values of this vector with the provided scalar.
|
Vector2f |
Vector2f.multLocal(float multX,
float multY)
Multiplies the values of this vector with the provided values.
|
Vector2f |
Vector2f.multLocal(Vector2f other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector2f |
Vector2f.negateLocal()
Negates all values of this vector.
|
Vector2f |
Vector2f.normalizeLocal()
Normalizes this vector (i.e. turn it into a unit vector).
|
Vector2f |
Vector2f.set(float x,
float y)
Sets the x, y and z values of this vector to the provided values.
|
Vector2f |
Vector2f.set(Vector2f vector)
Sets the x and y values of this vector to the values of the
provided vector.
|
Vector2f |
Vector2f.setX(float x)
Sets the x value of this vector.
|
Vector2f |
Vector2f.setY(float y)
Sets the y value of this vector.
|
Vector2f |
Vector2f.subtractLocal(float subtractX,
float subtractY)
Subtracts the provided values from the values of this vector.
|
Vector2f |
Vector2f.subtractLocal(Vector2f other)
Subtracts the values of the provided vector from the values of this vector.
|
Vector2f |
Vector2f.zero()
Sets all values to 0 (same set
set(0, 0); ). |
Modifier and Type | Method and Description |
---|---|
Vector2f |
Vector2f.addLocal(Vector2f other)
Adds the values of the provided vector to the values of this vector.
|
float |
Vector2f.angleBetween(Vector2f other)
Gets the angle between this vector and another vector.
|
float |
Vector2f.distance(Vector2f other)
Gets the distance between this vector and another vector.
|
float |
Vector2f.distanceSquared(Vector2f other)
Gets the squared distance between this vector and another Vector2f.
|
Vector2f |
Vector2f.divideLocal(Vector2f other) |
float |
Vector2f.dot(Vector2f other)
Gets the dot product of this vector with the provided vector.
|
boolean |
Vector2f.isOrthogonal(Vector2f other)
Checks if this vector is orthogonal to another vector (i.e. the angle
between both vectors is ~ 90° degree).
|
Vector2f |
Vector2f.multLocal(Vector2f other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector2f |
Vector2f.set(Vector2f vector)
Sets the x and y values of this vector to the values of the
provided vector.
|
Vector2f |
Vector2f.subtractLocal(Vector2f other)
Subtracts the values of the provided vector from the values of this vector.
|
Constructor and Description |
---|
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 |
World3DModel.getTextureOffset()
Gets the offset of the texture of this model.
|
Vector2f |
World3DModel.getTextureScale()
Gets the scale (xy) of the texture of this model.
|