Source code for kittycad.models.fraction_of_edge
from .base import KittyCadBaseModel
[docs]
class FractionOfEdge(KittyCadBaseModel):
"""An edge id and an upper and lower percentage bound of the edge."""
edge_id: str
lower_bound: float = 0.0
upper_bound: float = 1.0