Source code for kittycad.models.complementary_edges
from typing import List, Optional
from pydantic import BaseModel, ConfigDict
[docs]
class ComplementaryEdges(BaseModel):
"""Struct to contain the edge information of a wall of an extrude/rotate/loft/sweep."""
adjacent_ids: List[str]
opposite_id: Optional[str] = None
model_config = ConfigDict(protected_namespaces=())