subScalar method

Vector3 subScalar(
  1. num s
)

Implementation

Vector3 subScalar(num s) {
  x -= s;
  y -= s;
  z -= s;

  return this;
}