diff options
Diffstat (limited to 'Gem/develop/include/Gem/Utils/Matrix.h')
-rw-r--r-- | Gem/develop/include/Gem/Utils/Matrix.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Gem/develop/include/Gem/Utils/Matrix.h b/Gem/develop/include/Gem/Utils/Matrix.h index 4bc5c39..3e388c5 100644 --- a/Gem/develop/include/Gem/Utils/Matrix.h +++ b/Gem/develop/include/Gem/Utils/Matrix.h @@ -63,7 +63,8 @@ public: void rotateZ(float degrees); ////////// - void transform(float srcX, float srcY, float srcZ, float *dstX, float *dstY, float *dstZ) const; + void transform(float srcX, float srcY, float srcZ, float *dstX, + float *dstY, float *dstZ) const; ////////// // The actual matrix values @@ -71,7 +72,8 @@ public: ////////// // Utility functions - static void generateNormal(const float *v1, const float *v2, const float *v3, float *dst); + static void generateNormal(const float *v1, const float *v2, + const float *v3, float *dst); }; |