Files
GDMC-2024/networks/geometry/Enums.py
2024-06-11 01:57:42 +02:00

14 lines
194 B
Python

from enum import Enum
class LINE_OVERLAP(Enum):
NONE = 0
MAJOR = 1
MINOR = 2
class LINE_THICKNESS_MODE(Enum):
MIDDLE = 0
DRAW_COUNTERCLOCKWISE = 1
DRAW_CLOCKWISE = 2