floor method
Implementation
Vector3 floor() {
x = Math.floor(x).toDouble();
y = Math.floor(y).toDouble();
z = Math.floor(z).toDouble();
return this;
}
Vector3 floor() {
x = Math.floor(x).toDouble();
y = Math.floor(y).toDouble();
z = Math.floor(z).toDouble();
return this;
}