y property

double y

Implementation

double get y {
  return _translation[1];
}
void y=(double value)

Implementation

set y(double value) {
  if (_translation[1] == value) {
    return;
  }
  _translation[1] = value;
  markTransformDirty();
}