Update api spec (#231)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
f80767454a
commit
bf5e3e1839
File diff suppressed because it is too large
Load Diff
@ -206,7 +206,7 @@ class default_camera_perspective_settings(BaseModel):
|
|||||||
|
|
||||||
center: Point3d
|
center: Point3d
|
||||||
|
|
||||||
fov_y: float
|
fov_y: Optional[float] = None
|
||||||
|
|
||||||
sequence: Optional[int] = None
|
sequence: Optional[int] = None
|
||||||
|
|
||||||
@ -218,9 +218,9 @@ class default_camera_perspective_settings(BaseModel):
|
|||||||
|
|
||||||
vantage: Point3d
|
vantage: Point3d
|
||||||
|
|
||||||
z_far: float
|
z_far: Optional[float] = None
|
||||||
|
|
||||||
z_near: float
|
z_near: Optional[float] = None
|
||||||
|
|
||||||
model_config = ConfigDict(protected_namespaces=())
|
model_config = ConfigDict(protected_namespaces=())
|
||||||
|
|
||||||
|
@ -19139,6 +19139,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"fov_y": {
|
"fov_y": {
|
||||||
|
"nullable": true,
|
||||||
"description": "The field of view angle in the y direction, in degrees.",
|
"description": "The field of view angle in the y direction, in degrees.",
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"format": "float"
|
"format": "float"
|
||||||
@ -19173,11 +19174,13 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"z_far": {
|
"z_far": {
|
||||||
|
"nullable": true,
|
||||||
"description": "The distance to the far clipping plane.",
|
"description": "The distance to the far clipping plane.",
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"format": "float"
|
"format": "float"
|
||||||
},
|
},
|
||||||
"z_near": {
|
"z_near": {
|
||||||
|
"nullable": true,
|
||||||
"description": "The distance to the near clipping plane.",
|
"description": "The distance to the near clipping plane.",
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"format": "float"
|
"format": "float"
|
||||||
@ -19185,12 +19188,9 @@
|
|||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"center",
|
"center",
|
||||||
"fov_y",
|
|
||||||
"type",
|
"type",
|
||||||
"up",
|
"up",
|
||||||
"vantage",
|
"vantage"
|
||||||
"z_far",
|
|
||||||
"z_near"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user