Source code for kittycad.models.blend_type
from enum import Enum
[docs]
class BlendType(str, Enum):
"""What kind of blend to do""" # noqa: E501
"""# Use the tangent of the surfaces to calculate the blend.""" # noqa: E501
TANGENT = "tangent"
def __str__(self) -> str:
return str(self.value)