scale2 method
scale vector v
with s and set for this vector
Implementation
Vector3 scale2(Vector3 v, double s ) {
x = v.x * s;
y = v.y * s;
z = v.z * s;
return this;
}
scale vector v
with s and set for this vector
Vector3 scale2(Vector3 v, double s ) {
x = v.x * s;
y = v.y * s;
z = v.z * s;
return this;
}