addScalar method

Vector3 addScalar(
  1. num s
)

Implementation

Vector3 addScalar(num s) {
  x += s;
  y += s;
  z += s;

  return this;
}