y property

double y

Access the y component of the quaternion.

Implementation

double get y => _qStorage[1];
void y=(double y)

Implementation

set y(double y) {
  _qStorage[1] = y;
}