Skip to content

Commit 49c5a28

Browse files
committed
fix(Headers): rename file extensions from .h to .hpp
BREAKING CHANGE: rename file extensions from .h to .hpp
1 parent 6761f50 commit 49c5a28

File tree

164 files changed

+923
-923
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+923
-923
lines changed

bindings/python/src/inspector/CMakeLists.txt

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -21,43 +21,43 @@
2121
add_geode_python_binding(
2222
NAME "py_inspector"
2323
SOURCES
24-
"criterion/adjacency/surface_adjacency.h"
25-
"criterion/adjacency/solid_adjacency.h"
26-
"criterion/adjacency/brep_meshes_adjacency.h"
27-
"criterion/adjacency/section_meshes_adjacency.h"
28-
"criterion/colocation/edgedcurve_colocation.h"
29-
"criterion/colocation/pointset_colocation.h"
30-
"criterion/colocation/surface_colocation.h"
31-
"criterion/colocation/solid_colocation.h"
32-
"criterion/colocation/unique_vertices_colocation.h"
33-
"criterion/colocation/component_meshes_colocation.h"
34-
"criterion/degeneration/edgedcurve_degeneration.h"
35-
"criterion/degeneration/solid_degeneration.h"
36-
"criterion/degeneration/surface_degeneration.h"
37-
"criterion/degeneration/brep_meshes_degeneration.h"
38-
"criterion/degeneration/section_meshes_degeneration.h"
39-
"criterion/intersections/surface_intersections.h"
40-
"criterion/intersections/surface_curve_intersections.h"
41-
"criterion/intersections/model_intersections.h"
42-
"criterion/manifold/surface_edge_manifold.h"
43-
"criterion/manifold/surface_vertex_manifold.h"
44-
"criterion/manifold/solid_vertex_manifold.h"
45-
"criterion/manifold/solid_edge_manifold.h"
46-
"criterion/manifold/solid_facet_manifold.h"
47-
"criterion/manifold/brep_meshes_manifold.h"
48-
"criterion/manifold/section_meshes_manifold.h"
49-
"criterion/brep_meshes_inspector.h"
50-
"criterion/section_meshes_inspector.h"
51-
"topology/brep_topology.h"
52-
"topology/section_topology.h"
24+
"criterion/adjacency/surface_adjacency.hpp"
25+
"criterion/adjacency/solid_adjacency.hpp"
26+
"criterion/adjacency/brep_meshes_adjacency.hpp"
27+
"criterion/adjacency/section_meshes_adjacency.hpp"
28+
"criterion/colocation/edgedcurve_colocation.hpp"
29+
"criterion/colocation/pointset_colocation.hpp"
30+
"criterion/colocation/surface_colocation.hpp"
31+
"criterion/colocation/solid_colocation.hpp"
32+
"criterion/colocation/unique_vertices_colocation.hpp"
33+
"criterion/colocation/component_meshes_colocation.hpp"
34+
"criterion/degeneration/edgedcurve_degeneration.hpp"
35+
"criterion/degeneration/solid_degeneration.hpp"
36+
"criterion/degeneration/surface_degeneration.hpp"
37+
"criterion/degeneration/brep_meshes_degeneration.hpp"
38+
"criterion/degeneration/section_meshes_degeneration.hpp"
39+
"criterion/intersections/surface_intersections.hpp"
40+
"criterion/intersections/surface_curve_intersections.hpp"
41+
"criterion/intersections/model_intersections.hpp"
42+
"criterion/manifold/surface_edge_manifold.hpp"
43+
"criterion/manifold/surface_vertex_manifold.hpp"
44+
"criterion/manifold/solid_vertex_manifold.hpp"
45+
"criterion/manifold/solid_edge_manifold.hpp"
46+
"criterion/manifold/solid_facet_manifold.hpp"
47+
"criterion/manifold/brep_meshes_manifold.hpp"
48+
"criterion/manifold/section_meshes_manifold.hpp"
49+
"criterion/brep_meshes_inspector.hpp"
50+
"criterion/section_meshes_inspector.hpp"
51+
"topology/brep_topology.hpp"
52+
"topology/section_topology.hpp"
5353
"inspector.cpp"
54-
"edgedcurve_inspector.h"
55-
"brep_inspector.h"
56-
"pointset_inspector.h"
57-
"section_inspector.h"
58-
"solid_inspector.h"
59-
"surface_inspector.h"
60-
"information.h"
54+
"edgedcurve_inspector.hpp"
55+
"brep_inspector.hpp"
56+
"pointset_inspector.hpp"
57+
"section_inspector.hpp"
58+
"solid_inspector.hpp"
59+
"surface_inspector.hpp"
60+
"information.hpp"
6161
DEPENDENCIES
6262
${PROJECT_NAME}::inspector
6363
)

bindings/python/src/inspector/brep_inspector.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
*
2222
*/
2323

24-
#include <geode/model/representation/core/brep.h>
24+
#include <geode/model/representation/core/brep.hpp>
2525

26-
#include <geode/inspector/brep_inspector.h>
26+
#include <geode/inspector/brep_inspector.hpp>
2727

2828
namespace geode
2929
{

bindings/python/src/inspector/criterion/adjacency/brep_meshes_adjacency.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
*
2222
*/
2323

24-
#include <geode/model/representation/core/brep.h>
24+
#include <geode/model/representation/core/brep.hpp>
2525

26-
#include <geode/inspector/criterion/adjacency/brep_meshes_adjacency.h>
26+
#include <geode/inspector/criterion/adjacency/brep_meshes_adjacency.hpp>
2727

2828
namespace geode
2929
{

bindings/python/src/inspector/criterion/adjacency/section_meshes_adjacency.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
*
2222
*/
2323

24-
#include <geode/model/representation/core/section.h>
24+
#include <geode/model/representation/core/section.hpp>
2525

26-
#include <geode/inspector/criterion/adjacency/section_meshes_adjacency.h>
26+
#include <geode/inspector/criterion/adjacency/section_meshes_adjacency.hpp>
2727

2828
namespace geode
2929
{

bindings/python/src/inspector/criterion/adjacency/solid_adjacency.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
*/
2323
#include <absl/strings/str_cat.h>
2424

25-
#include <geode/mesh/core/solid_mesh.h>
25+
#include <geode/mesh/core/solid_mesh.hpp>
2626

27-
#include <geode/inspector/criterion/adjacency/solid_adjacency.h>
27+
#include <geode/inspector/criterion/adjacency/solid_adjacency.hpp>
2828

2929
namespace geode
3030
{

bindings/python/src/inspector/criterion/adjacency/surface_adjacency.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
*/
2323
#include <absl/strings/str_cat.h>
2424

25-
#include <geode/mesh/core/surface_mesh.h>
25+
#include <geode/mesh/core/surface_mesh.hpp>
2626

27-
#include <geode/inspector/criterion/adjacency/surface_adjacency.h>
27+
#include <geode/inspector/criterion/adjacency/surface_adjacency.hpp>
2828

2929
namespace geode
3030
{

bindings/python/src/inspector/criterion/brep_meshes_inspector.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
*
2222
*/
2323

24-
#include <geode/model/representation/core/brep.h>
24+
#include <geode/model/representation/core/brep.hpp>
2525

26-
#include <geode/inspector/criterion/brep_meshes_inspector.h>
26+
#include <geode/inspector/criterion/brep_meshes_inspector.hpp>
2727

2828
namespace geode
2929
{

bindings/python/src/inspector/criterion/colocation/component_meshes_colocation.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
*
2222
*/
2323

24-
#include <geode/model/representation/core/brep.h>
25-
#include <geode/model/representation/core/section.h>
24+
#include <geode/model/representation/core/brep.hpp>
25+
#include <geode/model/representation/core/section.hpp>
2626

27-
#include <geode/inspector/criterion/colocation/component_meshes_colocation.h>
27+
#include <geode/inspector/criterion/colocation/component_meshes_colocation.hpp>
2828

2929
#define PYTHON_COMPONENTS_COLOCATION( type, suffix ) \
3030
const auto name##type = \

bindings/python/src/inspector/criterion/colocation/edgedcurve_colocation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
*/
2323
#include <absl/strings/str_cat.h>
2424

25-
#include <geode/mesh/core/edged_curve.h>
25+
#include <geode/mesh/core/edged_curve.hpp>
2626

27-
#include <geode/inspector/criterion/colocation/edgedcurve_colocation.h>
27+
#include <geode/inspector/criterion/colocation/edgedcurve_colocation.hpp>
2828

2929
#define PYTHON_EDGEDCURVE_COLOCATION( dimension )
3030

bindings/python/src/inspector/criterion/colocation/pointset_colocation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
*/
2323
#include <absl/strings/str_cat.h>
2424

25-
#include <geode/mesh/core/point_set.h>
25+
#include <geode/mesh/core/point_set.hpp>
2626

27-
#include <geode/inspector/criterion/colocation/pointset_colocation.h>
27+
#include <geode/inspector/criterion/colocation/pointset_colocation.hpp>
2828

2929
namespace geode
3030
{

0 commit comments

Comments
 (0)