Files
kittycad.py/kittycad/models/perspective_camera_parameters.py
Jess Frazelle 2b44cdfb96 updates
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2024-07-28 15:21:51 -07:00

17 lines
321 B
Python

from typing import Optional
from pydantic import BaseModel, ConfigDict
class PerspectiveCameraParameters(BaseModel):
"""Defines a perspective view."""
fov_y: Optional[float] = None
z_far: Optional[float] = None
z_near: Optional[float] = None
model_config = ConfigDict(protected_namespaces=())