aboutsummaryrefslogtreecommitdiff
path: root/src/o3d
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2025-12-10 20:40:42 +0100
committervimene <vincent.menegaux@gmail.com>2025-12-10 20:40:42 +0100
commit761604f9e4815e8f4355637ebb46052314cbed86 (patch)
treeb9cd6dde75ebf5897f8e67835522c6411d6ab7cb /src/o3d
parentc666035bc6a51e4dd76daebefffaf8bbc951977c (diff)
downloadengine-761604f9e4815e8f4355637ebb46052314cbed86.tar.gz
renamed .h to .hpp
Diffstat (limited to 'src/o3d')
-rw-r--r--src/o3d/camera.hpp (renamed from src/o3d/camera.h)4
-rw-r--r--src/o3d/deriv_vertex.hpp (renamed from src/o3d/deriv_vertex.h)2
-rw-r--r--src/o3d/mesh.cpp4
-rw-r--r--src/o3d/mesh.hpp (renamed from src/o3d/mesh.h)2
-rw-r--r--src/o3d/obj3d.hpp (renamed from src/o3d/obj3d.h)4
-rw-r--r--src/o3d/scene.hpp (renamed from src/o3d/scene.h)4
-rw-r--r--src/o3d/tri.hpp (renamed from src/o3d/tri.h)4
-rw-r--r--src/o3d/tri_deriv.cpp6
-rw-r--r--src/o3d/tri_deriv.hpp (renamed from src/o3d/tri_deriv.h)4
-rw-r--r--src/o3d/vertex.hpp (renamed from src/o3d/vertex.h)4
-rw-r--r--src/o3d/vertex_data.hpp (renamed from src/o3d/vertex_data.h)2
11 files changed, 20 insertions, 20 deletions
diff --git a/src/o3d/camera.h b/src/o3d/camera.hpp
index 832f473..485c825 100644
--- a/src/o3d/camera.h
+++ b/src/o3d/camera.hpp
@@ -1,8 +1,8 @@
#ifndef O3D_CAMERA_H
#define O3D_CAMERA_H
-#include "math/mat4.h"
-#include "math/tform.h"
+#include "math/mat4.hpp"
+#include "math/tform.hpp"
using
engine::math::Matrix4,
diff --git a/src/o3d/deriv_vertex.h b/src/o3d/deriv_vertex.hpp
index c435a7e..bc47780 100644
--- a/src/o3d/deriv_vertex.h
+++ b/src/o3d/deriv_vertex.hpp
@@ -1,7 +1,7 @@
#ifndef O3D_DERIV_VERTEX_H
#define O3D_DERIV_VERTEX_H
-#include "math/vector.h"
+#include "math/vector.hpp"
namespace engine::o3d {
diff --git a/src/o3d/mesh.cpp b/src/o3d/mesh.cpp
index 2423e88..c1af5cd 100644
--- a/src/o3d/mesh.cpp
+++ b/src/o3d/mesh.cpp
@@ -1,8 +1,8 @@
-#include "o3d/mesh.h"
+#include "o3d/mesh.hpp"
#include <vector>
#include <array>
#include <cstddef>
-#include "math/vector.h"
+#include "math/vector.hpp"
using namespace engine::o3d;
diff --git a/src/o3d/mesh.h b/src/o3d/mesh.hpp
index acc48b5..2c3a065 100644
--- a/src/o3d/mesh.h
+++ b/src/o3d/mesh.hpp
@@ -5,7 +5,7 @@
#include <array>
#include <iterator>
#include <cstddef>
-#include "math/vector.h"
+#include "math/vector.hpp"
namespace engine::o3d {
diff --git a/src/o3d/obj3d.h b/src/o3d/obj3d.hpp
index 9f407f9..295d129 100644
--- a/src/o3d/obj3d.h
+++ b/src/o3d/obj3d.hpp
@@ -2,8 +2,8 @@
#define O3D_OBJ3D_H
#include <type_traits>
-#include "math/tform.h"
-#include "o3d/mesh.h"
+#include "math/tform.hpp"
+#include "o3d/mesh.hpp"
namespace engine::o3d {
diff --git a/src/o3d/scene.h b/src/o3d/scene.hpp
index 3b9131c..65008ac 100644
--- a/src/o3d/scene.h
+++ b/src/o3d/scene.hpp
@@ -3,8 +3,8 @@
#include <vector>
#include <type_traits>
-#include "o3d/obj3d.h"
-#include "o3d/camera.h"
+#include "o3d/obj3d.hpp"
+#include "o3d/camera.hpp"
namespace engine::o3d {
diff --git a/src/o3d/tri.h b/src/o3d/tri.hpp
index 4b50f91..7538d22 100644
--- a/src/o3d/tri.h
+++ b/src/o3d/tri.hpp
@@ -2,8 +2,8 @@
#define O3D_TRI_H
#include <vector>
-#include "o3d/vertex.h"
-#include "o3d/tri_deriv.h"
+#include "o3d/vertex.hpp"
+#include "o3d/tri_deriv.hpp"
namespace engine::o3d {
diff --git a/src/o3d/tri_deriv.cpp b/src/o3d/tri_deriv.cpp
index a22067e..79e3fb4 100644
--- a/src/o3d/tri_deriv.cpp
+++ b/src/o3d/tri_deriv.cpp
@@ -1,7 +1,7 @@
-#include "o3d/tri_deriv.h"
+#include "o3d/tri_deriv.hpp"
#include <vector>
-#include "math/vector.h"
-#include "o3d/deriv_vertex.h"
+#include "math/vector.hpp"
+#include "o3d/deriv_vertex.hpp"
using namespace engine::o3d;
diff --git a/src/o3d/tri_deriv.h b/src/o3d/tri_deriv.hpp
index 16a21f8..f82bd9b 100644
--- a/src/o3d/tri_deriv.h
+++ b/src/o3d/tri_deriv.hpp
@@ -2,8 +2,8 @@
#define O3D_TRI_VERTEX_H
#include <vector>
-#include "o3d/vertex.h"
-#include "o3d/deriv_vertex.h"
+#include "o3d/vertex.hpp"
+#include "o3d/deriv_vertex.hpp"
namespace engine::o3d {
diff --git a/src/o3d/vertex.h b/src/o3d/vertex.hpp
index 438f8b3..70fca7b 100644
--- a/src/o3d/vertex.h
+++ b/src/o3d/vertex.hpp
@@ -1,8 +1,8 @@
#ifndef O3D_VERTEX_H
#define O3D_VERTEX_H
-#include "math/vector.h"
-#include "o3d/vertex_data.h"
+#include "math/vector.hpp"
+#include "o3d/vertex_data.hpp"
namespace engine::o3d {
diff --git a/src/o3d/vertex_data.h b/src/o3d/vertex_data.hpp
index 22fa76b..0ebc6c9 100644
--- a/src/o3d/vertex_data.h
+++ b/src/o3d/vertex_data.hpp
@@ -1,7 +1,7 @@
#ifndef O3D_VERTEX_DATA_H
#define O3D_VERTEX_DATA_H
-#include "math/vector.h"
+#include "math/vector.hpp"
using
engine::math::Vector3;