wip - add matrix transformations

This commit is contained in:
zhao
2023-04-30 15:15:19 -04:00
parent c454ab074a
commit f1dbd714e1
14 changed files with 502 additions and 307 deletions

View File

@ -0,0 +1,10 @@
// 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;