diff options
-rw-r--r-- | math.c | 8 | ||||
-rw-r--r-- | physics.c | 2 |
2 files changed, 5 insertions, 5 deletions
@@ -76,22 +76,22 @@ int VectorEqual(VECTOR v1, VECTOR v2) { } MATRIX MatrixIdentity() { - MATRIX m = { + MATRIX m = {.f = { 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 - }; + }}; return m; } MATRIX MatrixMul(MATRIX m1, MATRIX m2) { - MATRIX m = { + MATRIX m = {.f = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 - }; + }}; short i, j, k; for(i = 0; i < 4; i++) @@ -2,7 +2,7 @@ #include <neofx/math.h> #include <math.h> -static VECTOR gravitation = {0, -9.8, 0}; +static VECTOR gravitation = {{0, -9.8, 0}}; void SetGravitation(VECTOR v) { |