rotateX method

void rotateX(
  1. double angle
)

Implementation

void rotateX(double angle) {
  operations.add(
    SmoothOperation(
        operation: SmoothMatrix4OperationType.rotate, rotationX: angle),
  );
}