yz property

Vector2 yz

Implementation

Vector2 get yz => Vector2(_v3storage[1], _v3storage[2]);
void yz=(Vector2 arg)

Implementation

set yz(Vector2 arg) {
  final argStorage = arg._v2storage;
  _v3storage[1] = argStorage[0];
  _v3storage[2] = argStorage[1];
}