set method

Pointer<Vector2C> set(
  1. num x,
  2. num y
)

Implementation

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