2023-12-21 08:14:08 -08:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class GlobalAxis(str, Enum):
|
2024-02-24 17:03:55 -08:00
|
|
|
"""The global axes.""" # noqa: E501
|
2023-12-21 08:14:08 -08:00
|
|
|
|
|
|
|
"""# 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)
|