Files
rackstack/rack/connector/transformations.scad
2023-04-30 15:15:19 -04:00

11 lines
236 B
OpenSCAD

// Spatial transformations between various parts' local spaces
include <./connectors.scad>
function transform(from, to) =
(from == "yBar" && to == "xBar")
? identity
: (from == "xBar" && to == "yBar")
? identity
: identity;