diff options
author | Nicholas Bottone <nick@bottone.io> | 2023-12-08 14:54:46 -0500 |
---|---|---|
committer | Nicholas Bottone <nick@bottone.io> | 2023-12-08 14:54:46 -0500 |
commit | f5b9e57575cd0ab35fc3d5658e86fede76cca46b (patch) | |
tree | 7b521bab9adcfedf1dea5877d15d9864c03fd268 /src/utils/sceneparser.h | |
parent | 298a7f8e68ae0aa1cbe6729c6f5f4ddb6d5b5650 (diff) |
Refactor scale4 function to modify the currentCTM matrix
Diffstat (limited to 'src/utils/sceneparser.h')
-rw-r--r-- | src/utils/sceneparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/sceneparser.h b/src/utils/sceneparser.h index fa8a2ac..130156a 100644 --- a/src/utils/sceneparser.h +++ b/src/utils/sceneparser.h @@ -35,5 +35,5 @@ public: static void translate4(glm::vec4 &v1, glm::vec4 v2); - static void scale4(glm::vec4 &v1, glm::vec4 v2); + static void scale4(glm::mat4 &m, glm::vec4 v); }; |