Files
kittycad.py/kittycad/models/camera_view_state.py
zoo-github-actions-auth[bot] 5711856363 Update api spec (#410)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-04-01 15:08:02 -07:00

28 lines
516 B
Python

from pydantic import BaseModel, ConfigDict
from ..models.point3d import Point3d
from ..models.point4d import Point4d
from ..models.world_coordinate_system import WorldCoordinateSystem
class CameraViewState(BaseModel):
""""""
eye_offset: float
fov_y: float
is_ortho: bool
ortho_scale_enabled: bool
ortho_scale_factor: float
pivot_position: Point3d
pivot_rotation: Point4d
world_coord_system: WorldCoordinateSystem
model_config = ConfigDict(protected_namespaces=())