Matrix3.rotationZ constructor

Matrix3.rotationZ(double radians)

Rotation of radians_ around Z axis.

Implementation

factory Matrix3.rotationZ(double radians) =>
    new Matrix3.zero()..setRotationZ(radians);