Skip to content

Commit

Permalink
bump manifold (openscad#4881)
Browse files Browse the repository at this point in the history
  • Loading branch information
pca006132 authored Dec 6, 2023
1 parent e7cf02b commit d212319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/manifold
Submodule manifold updated 53 files
+4 −1 .github/workflows/build_wheels.yml
+4 −1 .github/workflows/check_format.yml
+34 −0 .github/workflows/publish_npm.yml
+14 −1 CMakeLists.txt
+12 −1 README.md
+1 −1 bindings/python/CMakeLists.txt
+42 −26 bindings/python/examples/bricks.py
+7 −4 bindings/python/examples/cube_with_dents.py
+12 −4 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
+2 −1 bindings/python/examples/split_cube.py
+13 −12 bindings/python/examples/sponge.py
+2 −1 bindings/python/examples/union_failure.py
+76 −5 bindings/python/manifold3d.cpp
+1 −1 bindings/wasm/README.md
+56 −3 bindings/wasm/examples/editor.css
+46 −1 bindings/wasm/examples/editor.js
+0 −290 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
+55 −27 bindings/wasm/examples/manifold-gltf.ts
+17 −21 bindings/wasm/examples/model-viewer.html
+4 −4 bindings/wasm/examples/package-lock.json
+4 −4 bindings/wasm/examples/package.json
+16 −3 bindings/wasm/examples/public/editor.d.ts
+47 −27 bindings/wasm/examples/public/examples.js
+ bindings/wasm/examples/public/icons/pause.png
+ bindings/wasm/examples/public/icons/play.png
+7 −10 bindings/wasm/examples/worker.test.js
+154 −58 bindings/wasm/examples/worker.ts
+16 −14 bindings/wasm/manifold-encapsulated-types.d.ts
+12 −0 bindings/wasm/manifold-global-types.d.ts
+2 −2 bindings/wasm/package.json
+3 −3 flake.nix
+59 −0 minimizer.sh
+1 −1 pyproject.toml
+3 −1 src/collider/include/collider.h
+23 −10 src/manifold/src/boolean_result.cpp
+4 −0 src/manifold/src/edge_op.cpp
+3 −5 src/manifold/src/impl.cpp
+5 −1 src/polygon/src/polygon.cpp
+9 −0 src/utilities/include/public.h
+5 −1 src/utilities/include/sparse.h
+310 −0 src/utilities/include/svd.h
+16 −0 test/CMakeLists.txt
+28 −1 test/boolean_test.cpp
+4,749 −0 test/polygon_corpus.cpp
+123 −0 test/polygon_fuzz.cpp
+1 −4,689 test/polygon_test.cpp

0 comments on commit d212319

Please sign in to comment.