rotateY method

Object3D rotateY(
  1. double angle
)

angle - the angle to rotate in radians.

Rotates the object around y axis in local space.

Implementation

Object3D rotateY(double angle) {
  return rotateOnAxis(_yAxis, angle);
}