diff options
author | rtk0c <[email protected]> | 2022-05-07 16:51:34 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-05-07 16:51:34 -0700 |
commit | f348347f205f51800d0628021f193e63f5833f8d (patch) | |
tree | bac73176e54e315a5de943c21fc3ad916fa6659e /source/EditorGuizmo.hpp | |
parent | 7129d65df7b02d7412ee5d56debd5a9c094db5ad (diff) |
Changeset: 24 Revert ImGuizmo to the stock implementation
Diffstat (limited to 'source/EditorGuizmo.hpp')
-rw-r--r-- | source/EditorGuizmo.hpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/source/EditorGuizmo.hpp b/source/EditorGuizmo.hpp index 0560050..b11759c 100644 --- a/source/EditorGuizmo.hpp +++ b/source/EditorGuizmo.hpp @@ -201,17 +201,7 @@ 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, - 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, const 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 |