rotate method

rotate

Adds a rotation to the transformation matrix. The angle argument represents a clockwise rotation angle and is expressed in radians.

def rotate(self, angle):
    ...
ParameterTypeDescription
anglefloatRepresents a clockwise rotation angle expressed in radians.

See Also