Skip to content

Commit ff11311

Browse files
authored
Merge pull request #42 from petrasvestartas/docs_and_modules_renaming
CLEANUP
2 parents c3db632 + ccb100d commit ff11311

File tree

53 files changed

+230
-100
lines changed

Some content is hidden

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

53 files changed

+230
-100
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
### Changed
2222

2323
* Split binding into separate dynamic libraries.
24+
* The documentation contribution guide has been updated based on the single-file and single dynamic library build process.
25+
* Example images in the documentation have been updated.
26+
* The Python/C++ module name has been changed from `name_ext` to `_name`.
2427

2528
### Removed
2629

CMakeLists.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -225,16 +225,16 @@ function(add_nanobind_module module_name source_file)
225225
endfunction()
226226

227227
# Add new modules here
228-
add_nanobind_module(types_std src/types_std.cpp)
229-
add_nanobind_module(booleans_ext src/booleans.cpp)
230-
add_nanobind_module(meshing_ext src/meshing.cpp)
231-
add_nanobind_module(intersections_ext src/intersections.cpp)
232-
add_nanobind_module(measure_ext src/measure.cpp)
233-
add_nanobind_module(reconstruction_ext src/reconstruction.cpp)
234-
add_nanobind_module(skeletonization_ext src/skeletonization.cpp)
235-
add_nanobind_module(slicer_ext src/slicer.cpp)
236-
add_nanobind_module(straight_skeleton_2_ext src/straight_skeleton_2.cpp)
237-
add_nanobind_module(triangulation_ext src/triangulation.cpp)
238-
add_nanobind_module(subdivision_ext src/subdivision.cpp)
228+
add_nanobind_module(_types_std src/types_std.cpp)
229+
add_nanobind_module(_booleans src/booleans.cpp)
230+
add_nanobind_module(_meshing src/meshing.cpp)
231+
add_nanobind_module(_intersections src/intersections.cpp)
232+
add_nanobind_module(_measure src/measure.cpp)
233+
add_nanobind_module(_reconstruction src/reconstruction.cpp)
234+
add_nanobind_module(_skeletonization src/skeletonization.cpp)
235+
add_nanobind_module(_slicer src/slicer.cpp)
236+
add_nanobind_module(_straight_skeleton_2 src/straight_skeleton_2.cpp)
237+
add_nanobind_module(_triangulation src/triangulation.cpp)
238+
add_nanobind_module(_subdivision src/subdivision.cpp)
239239

240240

docs/_images/example_booleans.png

-138 KB
Loading
-192 KB
Loading

docs/_images/example_meshing.png

-943 KB
Loading
-411 KB
Loading
-75.5 KB
Loading
-67.2 KB
Loading
-439 KB
Loading
-299 KB
Loading

0 commit comments

Comments
 (0)