y property Null safety
Access the y component of the quaternion.
Implementation
double get y => _qStorage[1];
Implementation
set y(double y) {
_qStorage[1] = y;
}
Access the y component of the quaternion.
double get y => _qStorage[1];
set y(double y) {
_qStorage[1] = y;
}