x property

double x

X coordinate in editor world space.

Implementation

double get x => _x;
void x=(double value)

Change the _x field value. xChanged will be invoked only if the field's value has changed.

Implementation

set x(double value) {
  if (_x == value) {
    return;
  }
  double from = _x;
  _x = value;
  if (hasValidated) {
    xChanged(from, value);
  }
}