declutter catear_v3

This commit is contained in:
djerun 2025-07-08 12:51:04 +02:00
commit 165c80b1d4
2 changed files with 30 additions and 21 deletions

View file

@ -14,6 +14,12 @@ mat_T = function (mat) [
]
];
rotation_matrix = function(a) [
[cos(a), -sin(a), 0],
[sin(a), cos(a), 0],
[ 0, 0, 1]
];
bezier_matrix = [[1, -3, 3, -1],
[0, 3, -6, 3],
[0, 0, 3, -3],