rotateZ method

void rotateZ(
  1. double angle
)

Implementation

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