Files
kittycad.py/kittycad/models/direction.py
Jess Frazelle 12c164620b updates
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-09-29 16:05:40 -07:00

13 lines
301 B
Python

from enum import Enum
class Direction(str, Enum):
""" Specifies the sign of a co-ordinate axis. """ # noqa: E501
"""# Increasing numbers. """ # noqa: E501
POSITIVE = 'positive'
"""# Decreasing numbers. """ # noqa: E501
NEGATIVE = 'negative'
def __str__(self) -> str:
return str(self.value)