Source code for kittycad.models.orient_to_face
from pydantic import BaseModel, ConfigDict
from ..models.camera_settings import CameraSettings
[docs]
class OrientToFace(BaseModel):
"""The response from the `OrientToFace` command."""
settings: CameraSettings
model_config = ConfigDict(protected_namespaces=())