public abstract static class Utils.VectorUtils
extends java.lang.Object
Constructor and Description |
---|
VectorUtils() |
Modifier and Type | Method and Description |
---|---|
static Vector3f |
getDirection(Vector3f from,
Vector3f to)
Gets the direction between two points (from -> to) as a normalized
vector (unit vector, i.e. length == 1).
|
static Vector3f |
getDirection(Vector3f from,
Vector3f to,
Vector3f storeTo)
Gets the direction between two points (from -> to) as a normalized
vector (unit vector, i.e. length == 1).
|
static Vector3f |
getXYZInFrontOfPlayer(Player player,
float distance)
Gets the position in front of the player (with the given distance to the player).
|
static Vector3f |
getXYZInFrontOfPlayer(Player player,
float distance,
Vector3f storeTo)
Gets the position in front of the player (with the given distance to the player).
|
static Vector3f |
getXZInFrontOfPlayer(Player player,
float distance) |
static Vector3f |
getXZInFrontOfPlayer(Player player,
float distance,
Vector3f storeTo) |
public static Vector3f getXZInFrontOfPlayer(Player player, float distance, Vector3f storeTo)
public static Vector3f getXYZInFrontOfPlayer(Player player, float distance)
player
- the player.distance
- the desired distance between the player and the resulting position.getXZInFrontOfPlayer(net.risingworld.api.objects.Player, float)
public static Vector3f getXYZInFrontOfPlayer(Player player, float distance, Vector3f storeTo)
player
- the player.distance
- the desired distance between the player and the resulting position.storeTo
- the vector you want to store the result in. If null is provided,
a new vector will be created.getXZInFrontOfPlayer(net.risingworld.api.objects.Player, float, net.risingworld.api.utils.Vector3f)
public static Vector3f getDirection(Vector3f from, Vector3f to)
from
- the start position.to
- the end position.public static Vector3f getDirection(Vector3f from, Vector3f to, Vector3f storeTo)
from
- the start position.to
- the end position.storeTo
- the vector you want to store the resulting direction in.
If null is provided, a new vector will be created.