x property

  1. @override
num x
override

The x-coordinate of is display object relative to the local coordinates of the parent DisplayObjectContainer.

If the object is inside a DisplayObjectContainer that has transformations, it is in the local coordinate system of the enclosing DisplayObjectContainer.

Implementation

@override
num get x => _x;
  1. @override
void x=(num value)
override

Implementation

@override
set x(num value) {
  _x = value;
  _transformationMatrixRefresh = true;
}