skewX property

double skewX

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

Implementation

double get skewX {
  return _skewX;
}
void skewX=(double value)

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

Implementation

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