* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
18 lines
398 B
Python
18 lines
398 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.point3d import Point3d
|
|
|
|
|
|
class LinearTransform(BaseModel):
|
|
"""Ways to transform each solid being replicated in a repeating pattern."""
|
|
|
|
replicate: Optional[bool] = None
|
|
|
|
scale: Optional[Point3d] = None
|
|
|
|
translate: Optional[Point3d] = None
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|