mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-07-16 08:37:09 +00:00
fix
This commit is contained in:
+3
-2
@@ -1,7 +1,8 @@
|
|||||||
""" This module describes system wide enums.
|
""" This module describes system wide enums.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
class Plane:
|
|
||||||
|
class Plane(object):
|
||||||
""" Enum for choosing plane for circular interpolation.
|
""" Enum for choosing plane for circular interpolation.
|
||||||
"""
|
"""
|
||||||
PLANE_XY = 1
|
PLANE_XY = 1
|
||||||
@@ -9,7 +10,7 @@ class Plane:
|
|||||||
PLANE_YZ = 3
|
PLANE_YZ = 3
|
||||||
|
|
||||||
|
|
||||||
class RotationDirection:
|
class RotationDirection(object):
|
||||||
""" Enum for choosing rotation direction.
|
""" Enum for choosing rotation direction.
|
||||||
"""
|
"""
|
||||||
CW = 1
|
CW = 1
|
||||||
|
|||||||
Reference in New Issue
Block a user