Matrix4.rotationY constructor

Matrix4.rotationY(double radians)

Rotation of radians_ around Y.

Implementation

factory Matrix4.rotationY(double radians) => new Matrix4.zero()
  .._m4storage[15] = 1.0
  ..setRotationY(radians);