Some work on double support

This commit is contained in:
Aaron Franke
2021-08-09 17:15:17 -05:00
parent c68b109f27
commit 430ad75963
42 changed files with 277 additions and 260 deletions

View File

@@ -589,13 +589,13 @@ MainLoop *test() {
{
Vector3 v(1, 2, 3);
v.normalize();
float a = 0.3;
real_t a = 0.3;
Basis m(v, a);
Vector3 v2(7, 3, 1);
v2.normalize();
float a2 = 0.8;
real_t a2 = 0.8;
Basis m2(v2, a2);