The following example shows how to divide a Vector3D structure by a scalar.
|
// Divides a Vector3D by a Scalar using the overloaded / operator.
// Returns a Vector3D.
Vector3D vector1 = new Vector3D(20, 30, 40);
Vector3D vectorResult = new Vector3D();
Double scalar1 = 75;
vectorResult = vector1 / scalar1;
// vectorResult is approximately equal to (0.26667, 0.4, 0.53333)
|