MutableAffine.skewY constructor

MutableAffine.skewY(
  1. double a
)

Create a matrix representing y skew transformation.

Implementation

MutableAffine.skewY(double a) : _storage = Matrix3.identity(), super._p() {
  set(1, 0, tan(a));
}