Skip to content

Commit f29cd32

Browse files
committed
Renamed implementation files to be suffixed with Impl
Signed-off-by: Nick Avramoussis <[email protected]>
1 parent fe9a4f4 commit f29cd32

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

openvdb/openvdb/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,8 +459,8 @@ set(OPENVDB_LIBRARY_POINTS_INCLUDE_FILES
459459
)
460460

461461
set(OPENVDB_LIBRARY_POINTS_IMPL_INCLUDE_FILES
462-
points/impl/PointRasterizeSDF.h
463-
points/impl/PointRasterizeTrilinear.h
462+
points/impl/PointRasterizeSDFImpl.h
463+
points/impl/PointRasterizeTrilinearImpl.h
464464
)
465465

466466
set(OPENVDB_LIBRARY_TOOLS_INCLUDE_FILES

openvdb/openvdb/points/PointRasterizeSDF.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,6 @@ rasterizeSmoothSpheres(const PointDataGridT& points,
358358
} // namespace OPENVDB_VERSION_NAME
359359
} // namespace openvdb
360360

361-
#include "impl/PointRasterizeSDF.h"
361+
#include "impl/PointRasterizeSDFImpl.h"
362362

363363
#endif //OPENVDB_POINTS_RASTERIZE_SDF_HAS_BEEN_INCLUDED

openvdb/openvdb/points/PointRasterizeTrilinear.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ rasterizeTrilinear(const PointDataTreeT& points,
8080
} // namespace OPENVDB_VERSION_NAME
8181
} // namespace openvdb
8282

83-
#include "impl/PointRasterizeTrilinear.h"
83+
#include "impl/PointRasterizeTrilinearImpl.h"
8484

8585
#endif //OPENVDB_POINTS_RASTERIZE_TRILINEAR_HAS_BEEN_INCLUDED

openvdb/openvdb/points/impl/PointRasterizeSDF.h renamed to openvdb/openvdb/points/impl/PointRasterizeSDFImpl.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
/// @file PointRasterizeSDF.h
77
///
88

9-
#ifndef OPENVDB_IMPL_POINTS_RASTERIZE_SDF_HAS_BEEN_INCLUDED
10-
#define OPENVDB_IMPL_POINTS_RASTERIZE_SDF_HAS_BEEN_INCLUDED
9+
#ifndef OPENVDB_POINTS_RASTERIZE_SDF_IMPL_HAS_BEEN_INCLUDED
10+
#define OPENVDB_POINTS_RASTERIZE_SDF_IMPL_HAS_BEEN_INCLUDED
1111

1212
namespace openvdb {
1313
OPENVDB_USE_VERSION_NAMESPACE
@@ -1355,4 +1355,4 @@ rasterizeSmoothSpheres(const PointDataGridT& points,
13551355
} // namespace OPENVDB_VERSION_NAME
13561356
} // namespace openvdb
13571357

1358-
#endif //OPENVDB_IMPL_POINTS_RASTERIZE_SDF_HAS_BEEN_INCLUDED
1358+
#endif //OPENVDB_POINTS_RASTERIZE_SDF_IMPL_HAS_BEEN_INCLUDED

openvdb/openvdb/points/impl/PointRasterizeTrilinear.h renamed to openvdb/openvdb/points/impl/PointRasterizeTrilinearImpl.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
/// @file PointTransferSchemes.h
77
///
88

9-
#ifndef OPENVDB_IMPL_POINTS_RASTERIZE_TRILINEAR_HAS_BEEN_INCLUDED
10-
#define OPENVDB_IMPL_POINTS_RASTERIZE_TRILINEAR_HAS_BEEN_INCLUDED
9+
#ifndef OPENVDB_POINTS_RASTERIZE_TRILINEAR_IMPL_HAS_BEEN_INCLUDED
10+
#define OPENVDB_POINTS_RASTERIZE_TRILINEAR_IMPL_HAS_BEEN_INCLUDED
1111

1212
namespace openvdb {
1313
OPENVDB_USE_VERSION_NAMESPACE
@@ -376,4 +376,4 @@ rasterizeTrilinear(const PointDataTreeT& points,
376376
} // namespace OPENVDB_VERSION_NAME
377377
} // namespace openvdb
378378

379-
#endif //OPENVDB_IMPL_POINTS_RASTERIZE_TRILINEAR_HAS_BEEN_INCLUDED
379+
#endif //OPENVDB_POINTS_RASTERIZE_TRILINEAR_IMPL_HAS_BEEN_INCLUDED

0 commit comments

Comments
 (0)