pivotY property

  1. @override
num pivotY
override

The y-coordinate of the pivot point of this display object.

The pivot point is the point this display object rotates around. It is also the anchor point for the x/y-coordinates and the center for all transformations like scaling.

The default pivot point is (0,0).

Implementation

@override
num get pivotY => _pivotY;
  1. @override
void pivotY=(num value)
override

Implementation

@override
set pivotY(num value) {
  _pivotY = value;
  _transformationMatrixRefresh = true;
}