skewY property

double skewY

Returns the angle of skew on the y-axis in radians.

Implementation

double get skewY {
  return _skewY;
}
void skewY=(double value)

Sets the skew factor along the y-axis. Throws an error if value is NaN. If the value has not changed, does nothing.

Implementation

set skewY(double value) {
  if (value.isNaN) {
    throw '[$this.skewY] can not be NaN';
  }
  if (_skewY == value) {
    return;
  }
  _skewY = value;
  $setTransformationChanged();
}