set method

Pointer<Vector4C> set(
  1. num x,
  2. num y,
  3. num z,
  4. num w,
)

Implementation

Pointer<Vector4C> set(num x, num y, num z, num w) {
  ref.set(x, y, z, w);
  return this;
}