* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
20 lines
402 B
Python
20 lines
402 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.point3d import Point3d
|
|
|
|
|
|
class FaceIsPlanar(BaseModel):
|
|
"""Surface-local planar axes (if available)"""
|
|
|
|
origin: Optional[Point3d] = None
|
|
|
|
x_axis: Optional[Point3d] = None
|
|
|
|
y_axis: Optional[Point3d] = None
|
|
|
|
z_axis: Optional[Point3d] = None
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|