rotateZ method

Object3D rotateZ(
  1. double angle
)

angle - the angle to rotate in radians.

Rotates the object around z axis in local space.

Implementation

Object3D rotateZ(double angle) {
  return rotateOnAxis(_zAxis, angle);
}