in constants.py there is this # TODO: make sure CW/CCW are correct class Rotate: NONE = 0 CW = 1 CCW = 3 FLIP = 2 # 180 degree rotation How do we use it?
in constants.py there is this
TODO: make sure CW/CCW are correct
class Rotate:
NONE = 0
CW = 1
CCW = 3
FLIP = 2 # 180 degree rotation
How do we use it?