Source code for kittycad.models.system

from ..models.axis_direction_pair import AxisDirectionPair
from .base import KittyCadBaseModel


[docs] class System(KittyCadBaseModel): """Co-ordinate system definition. The `up` axis must be orthogonal to the `forward` axis. See [cglearn.eu] for background reading. [cglearn.eu](https://cglearn.eu/pub/computer-graphics/introduction-to-geometry#material-coordinate-systems-1)""" forward: AxisDirectionPair up: AxisDirectionPair