Importing the class

Link to importing-the-class

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.util.math.Vec3;

Implemented Interfaces

Link to implemented-interfaces

Vec3 implements the following interfaces. That means all methods defined in these interfaces are also available in Vec3

ZenScript
Copy
new Vec3(x as double, y as double, z as double) as Vec3
ParameterType
Parameter
x
Type
double
Parameter
y
Type
double
Parameter
z
Type
double

Name: add

Return Type: Vec3

ZenScript
Copy
Vec3.add(other as Vec3) as Vec3
ParameterType
Parameter
other
Type
Vec3

Name: add

Return Type: Vec3

ZenScript
Copy
Vec3.add(x as double, y as double, z as double) as Vec3
ParameterType
Parameter
x
Type
double
Parameter
y
Type
double
Parameter
z
Type
double

Name: closerThan

Return Type: boolean

ZenScript
Copy
Vec3.closerThan(position as Position, maxDistance as double) as boolean
ParameterType
Parameter
position
Type
Position
Parameter
maxDistance
Type
double

Name: cross

Return Type: Vec3

ZenScript
Copy
Vec3.cross(other as Vec3) as Vec3
ParameterType
Parameter
other
Type
Vec3

Name: distanceTo

Return Type: double

ZenScript
Copy
Vec3.distanceTo(other as Vec3) as double
ParameterType
Parameter
other
Type
Vec3

Name: distanceToSqr

Return Type: double

ZenScript
Copy
Vec3.distanceToSqr(other as Vec3) as double
ParameterType
Parameter
other
Type
Vec3

Name: distanceToSqr

Return Type: double

ZenScript
Copy
Vec3.distanceToSqr(x as double, y as double, z as double) as double
ParameterType
Parameter
x
Type
double
Parameter
y
Type
double
Parameter
z
Type
double

Name: dot

Return Type: double

ZenScript
Copy
Vec3.dot(other as Vec3) as double
ParameterType
Parameter
other
Type
Vec3

Name: getValue

Return Type: double

ZenScript
Copy
Vec3.getValue(axis as Axis) as double
ParameterType
Parameter
axis
Type
Axis

Link to horizontalDistance

Name: horizontalDistance

Return Type: double

ZenScript
Copy
// Vec3.horizontalDistance() as double

myVec3.horizontalDistance();

Link to horizontalDistanceSqr

Name: horizontalDistanceSqr

Return Type: double

ZenScript
Copy
// Vec3.horizontalDistanceSqr() as double

myVec3.horizontalDistanceSqr();

Name: length

Return Type: double

ZenScript
Copy
// Vec3.length() as double

myVec3.length();

Name: lengthSqr

Return Type: double

ZenScript
Copy
// Vec3.lengthSqr() as double

myVec3.lengthSqr();

Name: lerp

Return Type: Vec3

ZenScript
Copy
Vec3.lerp(other as Vec3, value as double) as Vec3
ParameterType
Parameter
other
Type
Vec3
Parameter
value
Type
double

Name: multiply

Return Type: Vec3

ZenScript
Copy
Vec3.multiply(other as Vec3) as Vec3
ParameterType
Parameter
other
Type
Vec3

Name: multiply

Return Type: Vec3

ZenScript
Copy
Vec3.multiply(x as double, y as double, z as double) as Vec3
ParameterType
Parameter
x
Type
double
Parameter
y
Type
double
Parameter
z
Type
double

Name: normalize

Return Type: Vec3

ZenScript
Copy
// Vec3.normalize() as Vec3

myVec3.normalize();

Name: reverse

Return Type: Vec3

ZenScript
Copy
// Vec3.reverse() as Vec3

myVec3.reverse();

Name: scale

Return Type: Vec3

ZenScript
Copy
Vec3.scale(scalar as double) as Vec3
ParameterType
Parameter
scalar
Type
double

Name: subtract

Return Type: Vec3

ZenScript
Copy
Vec3.subtract(other as Vec3) as Vec3
ParameterType
Parameter
other
Type
Vec3

Name: subtract

Return Type: Vec3

ZenScript
Copy
Vec3.subtract(x as double, y as double, z as double) as Vec3
ParameterType
Parameter
x
Type
double
Parameter
y
Type
double
Parameter
z
Type
double

Name: vectorTo

Return Type: Vec3

ZenScript
Copy
Vec3.vectorTo(other as Vec3) as Vec3
ParameterType
Parameter
other
Type
Vec3

Name: xRot

Return Type: Vec3

ZenScript
Copy
Vec3.xRot(pitch as float) as Vec3
ParameterType
Parameter
pitch
Type
float

Name: yRot

Return Type: Vec3

ZenScript
Copy
Vec3.yRot(yaw as float) as Vec3
ParameterType
Parameter
yaw
Type
float

Name: zRot

Return Type: Vec3

ZenScript
Copy
Vec3.zRot(roll as float) as Vec3
ParameterType
Parameter
roll
Type
float
NameTypeHas GetterHas Setter
Name
horizontalDistance
Type
double
Has Getter
true
Has Setter
false
Name
horizontalDistanceSqr
Type
double
Has Getter
true
Has Setter
false
Name
length
Type
double
Has Getter
true
Has Setter
false
Name
lengthSqr
Type
double
Has Getter
true
Has Setter
false
Name
normalize
Type
Vec3
Has Getter
true
Has Setter
false
Name
reverse
Type
Vec3
Has Getter
true
Has Setter
false