x property

double x

Implementation

double get x {
  return _translation[0];
}
void x=(double value)

Implementation

set x(double value) {
  if (_translation[0] == value) {
    return;
  }
  _translation[0] = value;
  markTransformDirty();
}