Files
kittycad.py/kittycad/models/perspective_camera_parameters.py
Jess Frazelle 0ad6216cde Update api spec (#182)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-01-06 14:56:45 -08:00

14 lines
174 B
Python

from pydantic import BaseModel
class PerspectiveCameraParameters(BaseModel):
"""Defines a perspective view."""
fov_y: float
z_far: float
z_near: float