subScalar method

Vector4 subScalar(
  1. num s
)

Implementation

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

  return this;
}