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

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-05-19 22:16:13 -07:00

18 lines
229 B
Python

from pydantic import BaseModel, ConfigDict
class Point4d(BaseModel):
"""A point in homogeneous (4D) space"""
w: float
x: float
y: float
z: float
model_config = ConfigDict(protected_namespaces=())