Matrix3.rotationY constructor

Matrix3.rotationY(double radians)

Rotation of radians_ around Y axis.

Implementation

factory Matrix3.rotationY(double radians) =>
    new Matrix3.zero()..setRotationY(radians);