Skip to content

Commit

Permalink
Bump manifold version to latest master.
Browse files Browse the repository at this point in the history
This brings mainly:

- updated thrust #389 -> may fix some of the random test case crashes
- global coplanarity check #408 -> fixes disapearing geometry in
  higher resolutions
- flip triangles #404 -> may fix the mirror winding order issue?
  • Loading branch information
t-paul committed Apr 13, 2023
1 parent 8f8ea24 commit 2007db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/manifold
Submodule manifold updated 48 files
+9 −11 .github/workflows/manifold.yml
+2 −1 .vscode/settings.json
+1 −2 CMakeLists.txt
+18 −5 README.md
+3 −0 bindings/c/conv.cpp
+1 −0 bindings/c/include/types.h
+369 −142 bindings/python/pymanifold.cpp
+1 −1 bindings/wasm/CMakeLists.txt
+4 −1 bindings/wasm/bindings.cpp
+9 −0 bindings/wasm/bindings.js
+11 −1 bindings/wasm/manifold-encapsulated-types.d.ts
+1 −0 bindings/wasm/manifold.d.ts
+7 −0 extras/CMakeLists.txt
+67 −0 extras/convert_file.cpp
+0 −1 flake.nix
+4 −2 meshIO/CMakeLists.txt
+1 −6 meshIO/include/meshIO.h
+ samples/models/perfSpheres.png
+1 −4 src/collider/include/collider.h
+26 −18 src/collider/src/collider.cpp
+15 −21 src/cross_section/src/cross_section.cpp
+76 −5 src/manifold/include/manifold.h
+19 −2 src/manifold/src/constructors.cpp
+29 −18 src/manifold/src/csg_tree.cpp
+27 −0 src/manifold/src/edge_op.cpp
+1 −1 src/manifold/src/face_op.cpp
+53 −62 src/manifold/src/impl.cpp
+9 −11 src/manifold/src/manifold.cpp
+57 −0 src/manifold/src/mesh_fixes.h
+3 −5 src/manifold/src/properties.cpp
+6 −0 src/manifold/src/shared.h
+177 −0 src/manifold/src/sort.cpp
+8 −1 src/polygon/include/polygon.h
+37 −7 src/polygon/src/polygon.cpp
+2 −0 src/third_party/CMakeLists.txt
+1 −1 src/third_party/clipper2
+494 −301 src/third_party/graphlite/include/graph_lite.h
+1 −1 src/third_party/thrust
+5 −1 src/utilities/CMakeLists.txt
+20 −77 src/utilities/include/public.h
+16 −17 test/boolean_test.cpp
+9 −1 test/cross_section_test.cpp
+70 −14 test/manifold_test.cpp
+2,058 −2,089 test/polygon_test.cpp
+10 −12 test/samples_test.cpp
+3 −2 test/test.h
+41 −10 test/test_main.cpp
+0 −49 thrust.diff

0 comments on commit 2007db3

Please sign in to comment.