Source code for kittycad.models.complementary_edges

from typing import List, Optional

from .base import KittyCadBaseModel


[docs] class ComplementaryEdges(KittyCadBaseModel): """Struct to contain the edge information of a wall of an extrude/rotate/loft/sweep.""" adjacent_ids: List[str] opposite_id: Optional[str] = None