Files
kittycad.py/kittycad/models/global_axis.py
Jess Frazelle dedbe43c3e bump
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2024-02-24 17:03:55 -08:00

16 lines
307 B
Python

from enum import Enum
class GlobalAxis(str, Enum):
"""The global axes.""" # noqa: E501
"""# The X axis """ # noqa: E501
X = "x"
"""# The Y axis """ # noqa: E501
Y = "y"
"""# The Z axis """ # noqa: E501
Z = "z"
def __str__(self) -> str:
return str(self.value)