diff options
author | rtk0c <[email protected]> | 2022-05-09 18:02:41 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-05-09 18:02:41 -0700 |
commit | 54d254649ffb9d56312ffd93b0c79644f6a00c9b (patch) | |
tree | db57368aa2f41420be01efe302955789303a2719 /source/EditorGuizmo.hpp | |
parent | cb4f56fc221d89b6f237ad0e9fdab7fc23e3e877 (diff) |
Changeset: 33 Fix guizmo bound resizing (add translation fixup)
Diffstat (limited to 'source/EditorGuizmo.hpp')
-rw-r--r-- | source/EditorGuizmo.hpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/source/EditorGuizmo.hpp b/source/EditorGuizmo.hpp index b11759c..0560050 100644 --- a/source/EditorGuizmo.hpp +++ b/source/EditorGuizmo.hpp @@ -201,7 +201,17 @@ enum MODE { WORLD }; -IMGUI_API bool Manipulate(const float* view, const float* projection, OPERATION operation, MODE mode, float* matrix, float* deltaMatrix = NULL, const float* snap = NULL, const float* localBounds = NULL, const float* boundsSnap = NULL); +IMGUI_API bool Manipulate( + const float* view, + const float* projection, + OPERATION operation, + MODE mode, + float* matrix, + float* deltaMatrix = NULL, + const float* snap = NULL, + float* localBounds = NULL, + const float* boundsSnap = NULL); + // // Please note that this cubeview is patented by Autodesk : https://patents.google.com/patent/US7782319B2/en // It seems to be a defensive patent in the US. I don't think it will bring troubles using it as |