2024-11-30 22:11:59 +00:00
|
|
|
|
|
|
|
from typing import Union as TUnion
|
|
|
|
from typing import List
|
|
|
|
import math
|
|
|
|
|
|
|
|
from openscad_py.point import Point
|
|
|
|
from openscad_py.object_ import Object
|
|
|
|
|
|
|
|
|
|
|
|
class Scale(Object):
|
2024-12-01 15:51:43 +00:00
|
|
|
"""Represents a scale transformation applied to an object.
|
|
|
|
See https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Transformations#scale
|
|
|
|
"""
|
2024-11-30 22:11:59 +00:00
|
|
|
|
|
|
|
def __init__(self, v: TUnion[list, Point, float, int], child: Object):
|
|
|
|
if isinstance(v, float) or isinstance(v, int):
|
|
|
|
v = [v, v, v]
|
|
|
|
self.v = Point.c(v)
|
|
|
|
self.child = child
|
|
|
|
|
|
|
|
def render(self) -> str:
|
2024-11-30 22:45:02 +00:00
|
|
|
"""Render the object into OpenSCAD code"""
|
2024-11-30 22:11:59 +00:00
|
|
|
return f"scale(v={self.v.render()}){{\n{self.child.render()}\n}}"
|
|
|
|
|
|
|
|
|