Source code for kittycad.models.path_component_constraint_type
from enum import Enum
[docs]
class PathComponentConstraintType(str, Enum):
"""The path component constraint type""" # noqa: E501
UNCONSTRAINED = "unconstrained"
VERTICAL = "vertical"
HORIZONTAL = "horizontal"
EQUAL_LENGTH = "equal_length"
PARALLEL = "parallel"
ANGLE_BETWEEN = "angle_between"