rotateByZ method

Matrix4 rotateByZ(
  1. double angle
)

Applies rotation around Z axis

Implementation

Matrix4 rotateByZ(double angle) {
  return this * CustomMatrixUtils.rotationZ(angle);
}