subScaledVector method
Subtract v
scaled by s
with this vector
Implementation
Vector3 subScaledVector (Vector3 v, double s ) {
x -= v.x * s;
y -= v.y * s;
z -= v.z * s;
return this;
}
Subtract v
scaled by s
with this vector
Vector3 subScaledVector (Vector3 v, double s ) {
x -= v.x * s;
y -= v.y * s;
z -= v.z * s;
return this;
}