Package | Description |
---|---|
net.risingworld.api.events.player | |
net.risingworld.api.utils |
Modifier and Type | Method and Description |
---|---|
Vector2i |
PlayerEnterWorldpartEvent.getNewWorldpartCoordinates()
Gets the coordinates of the new worldpart.
|
Vector2i |
PlayerEnterWorldpartEvent.getOldWorldpartCoordinates()
Gets the coordinates of the old, previous worldpart.
|
Constructor and Description |
---|
PlayerEnterWorldpartEvent(Player player,
Vector2i newWorldpart,
Vector2i oldWorldpart) |
Modifier and Type | Field and Description |
---|---|
static Vector2i |
Vector2i.UNIT_X
A unit vector along the X axis
|
static Vector2i |
Vector2i.UNIT_Y
A unit vector along the Y axis
|
static Vector2i |
Vector2i.ZERO
A vector with values 0, 0
|
Modifier and Type | Method and Description |
---|---|
Vector2i |
Vector2i.addLocal(int addX,
int addY)
Adds the provided values to the values of this vector.
|
Vector2i |
Vector2i.addLocal(Vector2i other)
Adds the values of the provided vector to the values of this vector.
|
Vector2i |
Vector2i.divideLocal(int scalar) |
Vector2i |
Vector2i.divideLocal(Vector2i other) |
Vector2i |
Vector2i.multLocal(int scalar)
Multiplies the values of this vector with the provided scalar.
|
Vector2i |
Vector2i.multLocal(int multX,
int multY)
Multiplies the values of this vector with the provided values.
|
Vector2i |
Vector2i.multLocal(Vector2i other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector2i |
Vector2i.negateLocal()
Negates all values of this vector.
|
Vector2i |
Vector2i.normalizeLocal()
Normalizes this vector (i.e. turn it into a unit vector).
|
Vector2i |
Vector2i.set(int x,
int y)
Sets the x, y and z values of this vector to the provided int values.
|
Vector2i |
Vector2i.set(Vector2i vector)
Sets the x and y values of this vector to the values of the
provided vector.
|
Vector2i |
Vector2i.setX(int x)
Sets the x value of this vector.
|
Vector2i |
Vector2i.setY(int y)
Sets the y value of this vector.
|
Vector2i |
Vector2i.subtractLocal(int subtractX,
int subtractY)
Subtracts the provided values from the values of this vector.
|
Vector2i |
Vector2i.subtractLocal(Vector2i other)
Subtracts the values of the provided vector from the values of this vector.
|
Vector2i |
Vector2i.zero()
Sets all values to 0 (same set
set(0, 0); ). |
Modifier and Type | Method and Description |
---|---|
Vector2i |
Vector2i.addLocal(Vector2i other)
Adds the values of the provided vector to the values of this vector.
|
float |
Vector2i.angleBetween(Vector2i other)
Gets the angle between this vector and another vector.
|
float |
Vector2i.distance(Vector2i other)
Gets the distance between this vector and another vector.
|
float |
Vector2i.distanceSquared(Vector2i other)
Gets the squared distance between this vector and another Vector2i.
|
Vector2i |
Vector2i.divideLocal(Vector2i other) |
float |
Vector2i.dot(Vector2i other)
Gets the dot product of this vector with the provided vector.
|
boolean |
Vector2i.isOrthogonal(Vector2i other)
Checks if this vector is orthogonal to another vector (i.e. the angle
between both vectors is ~ 90° degree).
|
Vector2i |
Vector2i.multLocal(Vector2i other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector2i |
Vector2i.set(Vector2i vector)
Sets the x and y values of this vector to the values of the
provided vector.
|
Vector2i |
Vector2i.subtractLocal(Vector2i other)
Subtracts the values of the provided vector from the values of this vector.
|
Constructor and Description |
---|
Vector2i(Vector2i copy)
Creates a new Vector2i and copies the x and y values from the
provided vector.
|