mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-07-25 10:06:55 +00:00
make more compatible
This commit is contained in:
+2
-4
@@ -1,9 +1,7 @@
|
|||||||
from enum import Enum
|
|
||||||
|
|
||||||
""" This module describes system wide enums.
|
""" This module describes system wide enums.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
class Plane(Enum):
|
class Plane:
|
||||||
""" Enum for choosing plane for circular interpolation.
|
""" Enum for choosing plane for circular interpolation.
|
||||||
"""
|
"""
|
||||||
PLANE_XY = 1
|
PLANE_XY = 1
|
||||||
@@ -11,7 +9,7 @@ class Plane(Enum):
|
|||||||
PLANE_YZ = 3
|
PLANE_YZ = 3
|
||||||
|
|
||||||
|
|
||||||
class RotationDirection(Enum):
|
class RotationDirection:
|
||||||
""" Enum for choosing rotation direction.
|
""" Enum for choosing rotation direction.
|
||||||
"""
|
"""
|
||||||
CW = 1
|
CW = 1
|
||||||
|
|||||||
Reference in New Issue
Block a user