Skip to content

Commit

Permalink
Update bext manifold submodule to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Dec 18, 2023
1 parent 4355f15 commit bfca445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifold/manifold
Submodule manifold updated 99 files
+36 −1 .github/workflows/build_wheels.yml
+4 −1 .github/workflows/check_format.yml
+3 −3 .github/workflows/manifold.yml
+34 −0 .github/workflows/publish_npm.yml
+81 −0 CMake/FindASSETIMPORT.cmake
+3 −1 CMakeLists.txt
+30 −13 README.md
+6 −0 bindings/c/include/manifoldc.h
+11 −0 bindings/c/manifoldc.cpp
+1 −1 bindings/python/CMakeLists.txt
+42 −26 bindings/python/examples/bricks.py
+7 −4 bindings/python/examples/cube_with_dents.py
+13 −5 bindings/python/examples/extrude.py
+59 −0 bindings/python/examples/gyroid_module.py
+2,007 −2,005 bindings/python/examples/maze.py
+8 −8 bindings/python/examples/run_all.py
+80 −0 bindings/python/examples/scallop.py
+23 −0 bindings/python/examples/split_cube.py
+14 −13 bindings/python/examples/sponge.py
+2 −1 bindings/python/examples/union_failure.py
+172 −42 bindings/python/manifold3d.cpp
+9 −1 bindings/wasm/CMakeLists.txt
+1 −1 bindings/wasm/README.md
+2 −0 bindings/wasm/bindings.cpp
+56 −3 bindings/wasm/examples/editor.css
+46 −1 bindings/wasm/examples/editor.js
+0 −285 bindings/wasm/examples/gltf-io.js
+424 −0 bindings/wasm/examples/gltf-io.ts
+7 −3 bindings/wasm/examples/index.html
+15 −16 bindings/wasm/examples/make-manifold.html
+70 −26 bindings/wasm/examples/manifold-gltf.ts
+17 −21 bindings/wasm/examples/model-viewer.html
+722 −786 bindings/wasm/examples/package-lock.json
+10 −10 bindings/wasm/examples/package.json
+42 −6 bindings/wasm/examples/public/editor.d.ts
+116 −87 bindings/wasm/examples/public/examples.js
+ bindings/wasm/examples/public/icons/pause.png
+ bindings/wasm/examples/public/icons/play.png
+10 −12 bindings/wasm/examples/worker.test.js
+286 −68 bindings/wasm/examples/worker.ts
+32 −14 bindings/wasm/manifold-encapsulated-types.d.ts
+12 −0 bindings/wasm/manifold-global-types.d.ts
+1 −1 bindings/wasm/package.json
+2 −1 extras/CMakeLists.txt
+3 −3 flake.nix
+12 −2 include/CMakeLists.txt
+21 −10 include/manifold/manifold.h
+29 −0 include/manifold/public.h
+4 −4 meshIO/include/meshIO.h
+1 −0 meshIO/src/meshIO.cpp
+59 −0 minimizer.sh
+2 −2 pyproject.toml
+ samples/models/perfSpheres.png
+12 −0 src/CMakeLists.txt
+3 −1 src/collider/include/collider.h
+4 −0 src/collider/src/collider.cpp
+34 −1 src/cross_section/src/cross_section.cpp
+5 −0 src/manifold/src/boolean3.cpp
+46 −30 src/manifold/src/boolean_result.cpp
+9 −2 src/manifold/src/constructors.cpp
+3 −0 src/manifold/src/csg_tree.cpp
+33 −27 src/manifold/src/edge_op.cpp
+107 −17 src/manifold/src/face_op.cpp
+11 −5 src/manifold/src/impl.cpp
+5 −2 src/manifold/src/impl.h
+23 −2 src/manifold/src/manifold.cpp
+2 −0 src/manifold/src/properties.cpp
+8 −3 src/manifold/src/smoothing.cpp
+8 −0 src/manifold/src/sort.cpp
+19 −17 src/polygon/src/polygon.cpp
+2 −1 src/sdf/src/sdf.cpp
+7 −5 src/third_party/clipper2/README.md
+47 −19 src/third_party/clipper2/include/clipper2/clipper.core.h
+10 −6 src/third_party/clipper2/include/clipper2/clipper.engine.h
+85 −78 src/third_party/clipper2/include/clipper2/clipper.export.h
+38 −42 src/third_party/clipper2/include/clipper2/clipper.h
+2 −2 src/third_party/clipper2/include/clipper2/clipper.minkowski.h
+16 −13 src/third_party/clipper2/include/clipper2/clipper.offset.h
+2 −2 src/third_party/clipper2/include/clipper2/clipper.rectclip.h
+1 −1 src/third_party/clipper2/include/clipper2/clipper.version.h
+46 −48 src/third_party/clipper2/src/clipper.engine.cpp
+234 −176 src/third_party/clipper2/src/clipper.offset.cpp
+5 −1 src/utilities/include/sparse.h
+310 −0 src/utilities/include/svd.h
+12 −0 src/utilities/include/utils.h
+8 −8 src/utilities/include/vec.h
+16 −0 test/CMakeLists.txt
+468 −2 test/boolean_test.cpp
+8 −0 test/manifold_test.cpp
+ test/models/Generic_Twin_7863.1.t0_left.glb
+ test/models/Generic_Twin_7863.1.t0_right.glb
+ test/models/Havocglass8_left.glb
+ test/models/Havocglass8_right.glb
+4,749 −0 test/polygon_corpus.cpp
+123 −0 test/polygon_fuzz.cpp
+1 −4,644 test/polygon_test.cpp
+63 −2 test/samples_test.cpp
+18 −0 test/sdf_test.cpp
+2 −2 test/test_main.cpp

0 comments on commit bfca445

Please sign in to comment.