Update api spec (#362)
* 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
525456428a
commit
cf7e20536c
20
kittycad/models/component_transform.py
Normal file
20
kittycad/models/component_transform.py
Normal file
@ -0,0 +1,20 @@
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
from ..models.transform_by_for_point3d import TransformByForPoint3d
|
||||
from ..models.transform_by_for_point4d import TransformByForPoint4d
|
||||
|
||||
|
||||
class ComponentTransform(BaseModel):
|
||||
"""Container that holds a translate, rotate and scale."""
|
||||
|
||||
rotate_angle_axis: Optional[TransformByForPoint4d] = None
|
||||
|
||||
rotate_rpy: Optional[TransformByForPoint3d] = None
|
||||
|
||||
scale: Optional[TransformByForPoint3d] = None
|
||||
|
||||
translate: Optional[TransformByForPoint3d] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user