Skip to content

Commit

Permalink
Update manifold (openscad#5140)
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel authored May 26, 2024
1 parent 8a890a9 commit be8e2a8
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/manifold
Submodule manifold updated 74 files
+9 −7 .github/workflows/build_wheels.yml
+2 −2 .github/workflows/check_format.yml
+2 −2 .github/workflows/deploy.yml
+16 −15 .github/workflows/manifold.yml
+3 −3 .github/workflows/publish_npm.yml
+4 −2 .vscode/launch.json
+7 −2 .vscode/settings.json
+3 −3 CMakeLists.txt
+6 −0 README.md
+2 −1 RELEASE_CHECKLIST.md
+2 −2 bindings/c/CMakeLists.txt
+7 −3 bindings/c/cross.cpp
+25 −15 bindings/c/include/manifoldc.h
+67 −37 bindings/c/manifoldc.cpp
+7 −0 bindings/python/examples/all_apis.py
+14 −0 bindings/python/manifold3d.cpp
+5 −0 bindings/wasm/bindings.cpp
+8 −4 bindings/wasm/bindings.js
+2 −1 bindings/wasm/examples/editor.js
+10 −10 bindings/wasm/examples/gltf-io.ts
+2 −2 bindings/wasm/examples/index.html
+3 −126 bindings/wasm/examples/make-manifold.html
+149 −0 bindings/wasm/examples/make-manifold.ts
+1 −1 bindings/wasm/examples/manifold-gltf.ts
+124 −0 bindings/wasm/examples/model-viewer-script.ts
+11 −101 bindings/wasm/examples/model-viewer.html
+124 −94 bindings/wasm/examples/package-lock.json
+3 −2 bindings/wasm/examples/package.json
+28 −1 bindings/wasm/examples/public/examples.js
+1 −0 bindings/wasm/examples/simple-dropzone.d.ts
+11 −73 bindings/wasm/examples/three.html
+148 −0 bindings/wasm/examples/three.ts
+1 −1 bindings/wasm/examples/tsconfig.json
+1 −0 bindings/wasm/examples/vite.config.js
+5 −5 bindings/wasm/examples/worker.test.js
+26 −6 bindings/wasm/examples/worker.ts
+68 −0 bindings/wasm/manifold-encapsulated-types.d.ts
+1 −1 bindings/wasm/package.json
+3 −4 flake.lock
+5 −5 flake.nix
+21 −20 manifoldDeps.cmake
+1 −1 pyproject.toml
+10 −3 src/cross_section/CMakeLists.txt
+34 −2 src/manifold/include/manifold.h
+3 −4 src/manifold/src/constructors.cpp
+16 −27 src/manifold/src/edge_op.cpp
+8 −2 src/manifold/src/impl.cpp
+50 −4 src/manifold/src/impl.h
+111 −6 src/manifold/src/manifold.cpp
+45 −0 src/manifold/src/properties.cpp
+5 −11 src/manifold/src/shared.h
+722 −367 src/manifold/src/smoothing.cpp
+1 −0 src/manifold/src/sort.cpp
+792 −0 src/manifold/src/subdivision.cpp
+1 −1 src/utilities/CMakeLists.txt
+225 −0 src/utilities/include/tri_dist.h
+2 −0 src/utilities/include/vec.h
+7 −3 src/utilities/include/vec_view.h
+1 −1 test-cmake.sh
+5 −1 test/CMakeLists.txt
+945 −0 test/boolean_complex_test.cpp
+80 −998 test/boolean_test.cpp
+0 −4 test/cross_section_test.cpp
+108 −0 test/edge_test.cpp
+35 −275 test/manifold_test.cpp
+133 −9 test/manifoldc_test.cpp
+ test/models/hull-body.glb
+ test/models/hull-mask.glb
+258 −0 test/properties_test.cpp
+12 −18 test/samples_test.cpp
+0 −4 test/sdf_test.cpp
+316 −0 test/smooth_test.cpp
+9 −1 test/test.h
+21 −0 test/test_main.cpp
File renamed without changes.
Binary file modified tests/regression/cgalpngtest/issue5137-expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/regression/opencsgtest/issue5137-expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit be8e2a8

Please sign in to comment.