This commit is contained in:
Nikolay Khabarov
2017-05-21 15:20:16 +03:00
parent ac99d415a9
commit 928aa07cbb

View File

@@ -1,7 +1,8 @@
""" This module describes system wide enums.
"""
class Plane:
class Plane(object):
""" Enum for choosing plane for circular interpolation.
"""
PLANE_XY = 1
@@ -9,7 +10,7 @@ class Plane:
PLANE_YZ = 3
class RotationDirection:
class RotationDirection(object):
""" Enum for choosing rotation direction.
"""
CW = 1