rotateY method

void rotateY(
  1. double angle
)

Implementation

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