diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-02-26 23:26:56 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-06-03 07:30:01 -0400 |
commit | a3c29ed899b7d99d5ca6ed41d55e8a60a5c33343 (patch) | |
tree | 1d17784f285ce580e55a964f392aea88807897eb /core/math | |
parent | 08a85352fbf03e392d9fe9ffa2db067d1fea8488 (diff) |
Rename files and the exposed name for Transform3D
Diffstat (limited to 'core/math')
-rw-r--r-- | core/math/camera_matrix.h | 2 | ||||
-rw-r--r-- | core/math/face3.h | 2 | ||||
-rw-r--r-- | core/math/transform_3d.cpp (renamed from core/math/transform.cpp) | 4 | ||||
-rw-r--r-- | core/math/transform_3d.h (renamed from core/math/transform.h) | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/core/math/camera_matrix.h b/core/math/camera_matrix.h index 7576f90224..786d46055a 100644 --- a/core/math/camera_matrix.h +++ b/core/math/camera_matrix.h @@ -32,7 +32,7 @@ #define CAMERA_MATRIX_H #include "core/math/rect2.h" -#include "core/math/transform.h" +#include "core/math/transform_3d.h" struct CameraMatrix { enum Planes { diff --git a/core/math/face3.h b/core/math/face3.h index 7335e6eff8..5091b338ef 100644 --- a/core/math/face3.h +++ b/core/math/face3.h @@ -33,7 +33,7 @@ #include "core/math/aabb.h" #include "core/math/plane.h" -#include "core/math/transform.h" +#include "core/math/transform_3d.h" #include "core/math/vector3.h" class Face3 { diff --git a/core/math/transform.cpp b/core/math/transform_3d.cpp index d5a78a7749..2611d6accf 100644 --- a/core/math/transform.cpp +++ b/core/math/transform_3d.cpp @@ -1,5 +1,5 @@ /*************************************************************************/ -/* transform.cpp */ +/* transform_3d.cpp */ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ @@ -28,7 +28,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#include "transform.h" +#include "transform_3d.h" #include "core/math/math_funcs.h" #include "core/string/print_string.h" diff --git a/core/math/transform.h b/core/math/transform_3d.h index 5db7069a04..078a2ca11a 100644 --- a/core/math/transform.h +++ b/core/math/transform_3d.h @@ -1,5 +1,5 @@ /*************************************************************************/ -/* transform.h */ +/* transform_3d.h */ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ |