rotateX method

Object3D rotateX(
  1. double angle
)

angle - the angle to rotate in radians.

Rotates the object around x axis in local space.

Implementation

Object3D rotateX(double angle) {
  return rotateOnAxis(_xAxis, angle);
}