smart-bbox 0.1.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- smart_bbox-0.1.13/CITATION.cff +24 -0
- smart_bbox-0.1.13/LICENSE +418 -0
- smart_bbox-0.1.13/MANIFEST.in +51 -0
- smart_bbox-0.1.13/PKG-INFO +397 -0
- smart_bbox-0.1.13/README.md +354 -0
- smart_bbox-0.1.13/cmake/ftetwild_compat.cmake +3 -0
- smart_bbox-0.1.13/configs/README.md +22 -0
- smart_bbox-0.1.13/configs/demo.yaml +73 -0
- smart_bbox-0.1.13/configs/example_3x3.yaml +98 -0
- smart_bbox-0.1.13/configs/expanded_full.yaml +58 -0
- smart_bbox-0.1.13/configs/paper_like.yaml +85 -0
- smart_bbox-0.1.13/configs/smoke_5.yaml +112 -0
- smart_bbox-0.1.13/cpp/README.md +24 -0
- smart_bbox-0.1.13/cpp/manifold_bridge.cpp +1499 -0
- smart_bbox-0.1.13/cpp/smart_cpp_module.cpp +7819 -0
- smart_bbox-0.1.13/cpp/smart_native_cli.cpp +3232 -0
- smart_bbox-0.1.13/cpp/smart_native_core.cpp +1464 -0
- smart_bbox-0.1.13/cpp/smart_native_core.hpp +218 -0
- smart_bbox-0.1.13/cpp/smart_native_engine.cpp +2265 -0
- smart_bbox-0.1.13/cpp/smart_native_engine.hpp +106 -0
- smart_bbox-0.1.13/docs/PIPELINE.md +117 -0
- smart_bbox-0.1.13/docs/PYTHON_PACKAGE.md +138 -0
- smart_bbox-0.1.13/docs/QUICKSTART.md +250 -0
- smart_bbox-0.1.13/docs/RELEASE.md +203 -0
- smart_bbox-0.1.13/docs/RELEASE_NOTES_0.1.0.md +122 -0
- smart_bbox-0.1.13/docs/REPOSITORY_STRUCTURE.md +106 -0
- smart_bbox-0.1.13/docs/RESEARCH_PLAN.md +124 -0
- smart_bbox-0.1.13/docs/TETRA_FAILURE_PLAYBOOK.md +161 -0
- smart_bbox-0.1.13/docs/teaser.png +0 -0
- smart_bbox-0.1.13/pymesh.py +9 -0
- smart_bbox-0.1.13/pyproject.toml +74 -0
- smart_bbox-0.1.13/scripts/README.md +22 -0
- smart_bbox-0.1.13/scripts/__init__.py +1 -0
- smart_bbox-0.1.13/scripts/analyze_pipeline_failures.py +128 -0
- smart_bbox-0.1.13/scripts/audit_release_wheel.py +513 -0
- smart_bbox-0.1.13/scripts/ci_build_manifold.py +71 -0
- smart_bbox-0.1.13/scripts/prepare_shapenet_samples.py +444 -0
- smart_bbox-0.1.13/scripts/quickstart_reproduce.py +119 -0
- smart_bbox-0.1.13/scripts/release_preflight.py +190 -0
- smart_bbox-0.1.13/scripts/smoke_console_scripts.py +129 -0
- smart_bbox-0.1.13/scripts/smoke_native_sanitizers.py +138 -0
- smart_bbox-0.1.13/setup.cfg +4 -0
- smart_bbox-0.1.13/setup.py +7 -0
- smart_bbox-0.1.13/setup_cpp.py +373 -0
- smart_bbox-0.1.13/smart/__init__.py +200 -0
- smart_bbox-0.1.13/smart/__main__.py +7 -0
- smart_bbox-0.1.13/smart/action_prior.py +2610 -0
- smart_bbox-0.1.13/smart/api.py +260 -0
- smart_bbox-0.1.13/smart/box_proposal.py +1452 -0
- smart_bbox-0.1.13/smart/candidate_pruning_gate.py +551 -0
- smart_bbox-0.1.13/smart/cli.py +1092 -0
- smart_bbox-0.1.13/smart/configs/__init__.py +1 -0
- smart_bbox-0.1.13/smart/configs/demo.yaml +73 -0
- smart_bbox-0.1.13/smart/configs/example_3x3.yaml +98 -0
- smart_bbox-0.1.13/smart/configs/expanded_full.yaml +58 -0
- smart_bbox-0.1.13/smart/configs/paper_like.yaml +85 -0
- smart_bbox-0.1.13/smart/configs/smoke_5.yaml +112 -0
- smart_bbox-0.1.13/smart/cpp.py +846 -0
- smart_bbox-0.1.13/smart/evaluation.py +454 -0
- smart_bbox-0.1.13/smart/legacy/__init__.py +1 -0
- smart_bbox-0.1.13/smart/legacy/merging/__init__.py +1 -0
- smart_bbox-0.1.13/smart/legacy/merging/configs/__init__.py +1 -0
- smart_bbox-0.1.13/smart/legacy/merging/configs/args.py +342 -0
- smart_bbox-0.1.13/smart/legacy/merging/greedy_all.py +159 -0
- smart_bbox-0.1.13/smart/legacy/merging/run.py +67 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/buffer/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/buffer/buffer.py +203 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/buffer/perbuffer.py +148 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/datamodules/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/datamodules/datasets/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/datamodules/datasets/gen_3d_cuboids.py +128 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/datamodules/tetmesh_datamodule.py +137 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/eval.py +71 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/gen_dataset.py +97 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/greedy.py +361 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/greedy_chanho.py +146 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/models/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/models/dqn.py +915 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/models/policies.py +118 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/train.py +53 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/utils/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/utils/bounding_box.py +305 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/utils/bsp_preseg.py +351 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/utils/l2_preseg.py +125 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/utils/preseg.py +416 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/utils/utils.py +132 -0
- smart_bbox-0.1.13/smart/legacy/merging/src/var3dseg.py +57 -0
- smart_bbox-0.1.13/smart/legacy/mesh2tet/__init__.py +1 -0
- smart_bbox-0.1.13/smart/legacy/mesh2tet/scripts/__init__.py +1 -0
- smart_bbox-0.1.13/smart/legacy/mesh2tet/scripts/mesh2tetra.py +125 -0
- smart_bbox-0.1.13/smart/legacy/refine/__init__.py +1 -0
- smart_bbox-0.1.13/smart/legacy/refine/configs/__init__.py +1 -0
- smart_bbox-0.1.13/smart/legacy/refine/configs/args.py +814 -0
- smart_bbox-0.1.13/smart/legacy/refine/run.py +68 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/buffer/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/buffer/buffer.py +199 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/buffer/perbuffer.py +152 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/datamodules/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/datamodules/tetmesh_datamodule.py +137 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/eval.py +71 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/greedy.py +258 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/mcts.py +402 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/models/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/models/dqn.py +1197 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/models/policies.py +109 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/models/tree_search.py +1347 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/train.py +53 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/utils/__init__.py +0 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/utils/bbox_bsp_preseg.py +173 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/utils/bounding_box.py +290 -0
- smart_bbox-0.1.13/smart/legacy/refine/src/utils/utils.py +134 -0
- smart_bbox-0.1.13/smart/legacy/renderer/__init__.py +1 -0
- smart_bbox-0.1.13/smart/legacy/renderer/blender_mesh_teaser.py +460 -0
- smart_bbox-0.1.13/smart/legacy/renderer/boxes.blend +0 -0
- smart_bbox-0.1.13/smart/legacy/renderer/render_all.py +238 -0
- smart_bbox-0.1.13/smart/legacy/renderer/render_all_teaser.py +219 -0
- smart_bbox-0.1.13/smart/legacy/renderer/render_teaser.py +690 -0
- smart_bbox-0.1.13/smart/legacy/renderer/semantic_colors.txt +57 -0
- smart_bbox-0.1.13/smart/legacy/renderer/vis_utils.py +461 -0
- smart_bbox-0.1.13/smart/local_refine_gate.py +665 -0
- smart_bbox-0.1.13/smart/native.py +43 -0
- smart_bbox-0.1.13/smart/native_compat.py +2221 -0
- smart_bbox-0.1.13/smart/native_executable.py +91 -0
- smart_bbox-0.1.13/smart/native_runner.py +1507 -0
- smart_bbox-0.1.13/smart/pipeline/__init__.py +8 -0
- smart_bbox-0.1.13/smart/pipeline/config.py +469 -0
- smart_bbox-0.1.13/smart/pipeline/manifest.py +82 -0
- smart_bbox-0.1.13/smart/pipeline/runner.py +121 -0
- smart_bbox-0.1.13/smart/pipeline/stages.py +3978 -0
- smart_bbox-0.1.13/smart/pipeline/tools.py +1169 -0
- smart_bbox-0.1.13/smart/py.typed +1 -0
- smart_bbox-0.1.13/smart/pymanifold_runtime/.gitkeep +1 -0
- smart_bbox-0.1.13/smart/pymesh_compat.py +268 -0
- smart_bbox-0.1.13/smart/quality.py +262 -0
- smart_bbox-0.1.13/smart/vendor/manifold/.clang-format +1 -0
- smart_bbox-0.1.13/smart/vendor/manifold/.codecov.yml +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/.gitignore +116 -0
- smart_bbox-0.1.13/smart/vendor/manifold/.gitmodules +13 -0
- smart_bbox-0.1.13/smart/vendor/manifold/AUTHORS +9 -0
- smart_bbox-0.1.13/smart/vendor/manifold/CMakeLists.txt +89 -0
- smart_bbox-0.1.13/smart/vendor/manifold/CONTRIBUTING.md +29 -0
- smart_bbox-0.1.13/smart/vendor/manifold/Doxyfile +2584 -0
- smart_bbox-0.1.13/smart/vendor/manifold/LICENSE +201 -0
- smart_bbox-0.1.13/smart/vendor/manifold/README.md +106 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/CMakeLists.txt +25 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/CMakeLists.txt +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/box.cpp +94 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/conv.cpp +166 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/include/conv.h +55 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/include/manifoldc.h +224 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/include/types.h +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/manifoldc.cpp +462 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/meshio.cpp +72 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/CMakeLists.txt +24 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/bricks.py +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/cube_with_dents.py +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/maze.py +4040 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/run_all.py +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/union_failure.py +7 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/pymanifold.cpp +515 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/CMakeLists.txt +1 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.appveyor.yml +37 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.clang-format +19 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.clang-tidy +66 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.cmake-format.yaml +73 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.gitignore +45 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.pre-commit-config.yaml +151 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.readthedocs.yml +3 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/CMakeLists.txt +299 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/LICENSE +29 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/MANIFEST.in +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/README.rst +180 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/attr.h +613 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/buffer_info.h +144 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/cast.h +1422 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/chrono.h +211 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/common.h +2 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/complex.h +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/class.h +709 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/common.h +1063 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/descr.h +133 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/init.h +346 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/internals.h +553 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/type_caster_base.h +985 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/typeid.h +55 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/eigen.h +608 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/embed.h +296 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/eval.h +163 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/functional.h +121 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/gil.h +193 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/iostream.h +275 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/numpy.h +1741 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/operators.h +163 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/options.h +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/pybind11.h +2573 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/pytypes.h +1924 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/stl/filesystem.h +103 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/stl.h +375 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/stl_bind.h +747 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/noxfile.py +93 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/__init__.py +11 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/__main__.py +52 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/_version.py +12 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/_version.pyi +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/commands.py +21 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/py.typed +0 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/setup_helpers.py +494 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/setup_helpers.pyi +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pyproject.toml +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/setup.cfg +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/setup.py +162 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/FindCatch.cmake +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/FindEigen3.cmake +86 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/FindPythonLibsNew.cmake +257 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/check-style.sh +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/cmake_uninstall.cmake.in +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/libsize.py +39 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/make_changelog.py +64 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pybind11Common.cmake +411 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pybind11Config.cmake.in +233 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pybind11NewTools.cmake +278 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pybind11Tools.cmake +219 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pyproject.toml +3 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/setup_global.py.in +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/setup_main.py.in +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/extras/CMakeLists.txt +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/extras/perf +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/extras/perf_test.cpp +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/extras/perf_test_cgal.cpp +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/flake.lock +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/flake.nix +131 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/CMakeLists.txt +20 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/collider/CMakeLists.txt +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/collider/include/collider.h +45 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/collider/src/collider.cpp +340 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/CMakeLists.txt +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/include/manifold.h +204 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/boolean3.cpp +617 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/boolean3.h +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/boolean_result.cpp +730 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/constructors.cpp +478 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/csg_tree.cpp +457 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/csg_tree.h +104 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/edge_op.cpp +522 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/face_op.cpp +173 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/impl.cpp +861 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/impl.h +134 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/manifold.cpp +739 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/properties.cpp +373 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/shared.h +236 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/smoothing.cpp +499 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/sort.cpp +435 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/polygon/CMakeLists.txt +28 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/polygon/include/polygon.h +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/polygon/src/polygon.cpp +1074 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/sdf/CMakeLists.txt +24 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/sdf/include/sdf.h +385 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/CMakeLists.txt +1 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/.appveyor.yml +87 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/.gitignore +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/.travis.yml +735 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/CMakeLists.txt +15 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/cmake/glm/glmConfig-version.cmake +11 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/cmake/glm/glmConfig.cmake +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/copying.txt +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/CMakeLists.txt +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/common.hpp +539 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_features.hpp +394 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_fixes.hpp +27 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_noise.hpp +81 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_swizzle.hpp +804 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_swizzle_func.hpp +682 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_vectorize.hpp +162 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/compute_common.hpp +50 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/compute_vector_relational.hpp +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_common.inl +792 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_common_simd.inl +231 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_exponential.inl +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_exponential_simd.inl +37 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_geometric.inl +243 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_geometric_simd.inl +163 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_integer.inl +372 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_integer_simd.inl +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_matrix.inl +398 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_matrix_simd.inl +249 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_packing.inl +189 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_packing_simd.inl +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_trigonometric.inl +197 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_trigonometric_simd.inl +0 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_vector_relational.inl +87 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_vector_relational_simd.inl +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/glm.cpp +263 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/qualifier.hpp +230 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/setup.hpp +1135 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_float.hpp +68 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_half.hpp +16 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_half.inl +241 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x2.hpp +177 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x2.inl +536 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x3.hpp +159 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x3.inl +510 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x4.hpp +161 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x4.inl +520 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x2.hpp +167 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x2.inl +532 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x3.hpp +184 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x3.inl +601 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x4.hpp +166 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x4.inl +578 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x2.hpp +171 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x2.inl +574 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x3.hpp +171 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x3.inl +598 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x4.hpp +189 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x4.inl +706 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x4_simd.inl +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_quat.hpp +186 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_quat.inl +408 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_quat_simd.inl +188 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec1.hpp +308 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec1.inl +551 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec2.hpp +399 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec2.inl +913 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec3.hpp +432 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec3.inl +1068 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec4.hpp +505 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec4.inl +1140 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec4_simd.inl +775 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/exponential.hpp +110 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_clip_space.hpp +522 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_clip_space.inl +555 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_common.hpp +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_common.inl +16 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x2.hpp +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x2_precision.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x3_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x4_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x2_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x3.hpp +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x3_precision.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x4_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x2_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x3_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x4.hpp +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x4_precision.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x2.hpp +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x2_precision.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x3_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x4_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x2_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x3.hpp +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x3_precision.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x4_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x2_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x3_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x4.hpp +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x4_precision.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x2.hpp +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x2_sized.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x3.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x3_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x4.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x4_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x2.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x2_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x3.hpp +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x3_sized.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x4.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x4_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x2.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x2_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x3.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x3_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x4.hpp +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x4_sized.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_projection.hpp +149 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_projection.inl +106 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_relational.hpp +132 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_relational.inl +82 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_transform.hpp +144 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_transform.inl +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x2.hpp +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x2_sized.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x3.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x3_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x4.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x4_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x2.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x2_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x3.hpp +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x3_sized.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x4.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x4_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x2.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x2_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x3.hpp +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x3_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x4.hpp +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x4_sized.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_common.hpp +135 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_common.inl +144 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_common_simd.inl +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_double.hpp +39 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_double_precision.hpp +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_exponential.hpp +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_exponential.inl +85 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_float.hpp +39 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_float_precision.hpp +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_geometric.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_geometric.inl +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_relational.hpp +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_relational.inl +35 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_transform.hpp +47 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_transform.inl +24 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_trigonometric.hpp +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_trigonometric.inl +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_common.hpp +157 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_common.inl +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_constants.hpp +40 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_constants.inl +24 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_int_sized.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_integer.hpp +92 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_integer.inl +243 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_packing.hpp +32 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_packing.inl +0 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_relational.hpp +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_relational.inl +40 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_uint_sized.hpp +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_ulp.hpp +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_ulp.inl +284 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool1.hpp +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool1_precision.hpp +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool2_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool3_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool4_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_common.hpp +204 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_common.inl +129 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double1.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double1_precision.hpp +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double2_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double3_precision.hpp +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double4_precision.hpp +35 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float1.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float1_precision.hpp +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float2_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float3_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float4_precision.hpp +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int1.hpp +32 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int1_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int2_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int3_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int4_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_integer.hpp +149 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_integer.inl +85 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_packing.hpp +32 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_packing.inl +0 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_relational.hpp +107 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_relational.inl +75 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint1.hpp +32 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint1_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint2.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint2_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint3.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint3_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint4.hpp +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint4_sized.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_ulp.hpp +109 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_ulp.inl +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext.hpp +253 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/fwd.hpp +1233 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/geometric.hpp +116 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/glm.hpp +136 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/bitfield.hpp +266 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/bitfield.inl +626 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/color_space.hpp +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/color_space.inl +84 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/constants.hpp +165 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/constants.inl +167 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/epsilon.hpp +60 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/epsilon.inl +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/integer.hpp +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/integer.inl +68 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_access.hpp +60 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_access.inl +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_integer.hpp +433 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_inverse.hpp +50 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_inverse.inl +118 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_transform.hpp +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_transform.inl +3 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/noise.hpp +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/noise.inl +807 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/packing.hpp +728 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/packing.inl +938 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/quaternion.hpp +173 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/quaternion.inl +202 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/quaternion_simd.inl +0 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/random.hpp +82 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/random.inl +303 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/reciprocal.hpp +135 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/reciprocal.inl +191 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/round.hpp +160 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/round.inl +155 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_aligned.hpp +1315 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_precision.hpp +2094 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_precision.inl +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_ptr.hpp +230 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_ptr.inl +386 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/ulp.hpp +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/ulp.inl +173 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/vec1.hpp +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/associated_min_max.hpp +207 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/associated_min_max.inl +354 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/bit.hpp +98 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/bit.inl +92 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/closest_point.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/closest_point.inl +45 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_encoding.hpp +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_encoding.inl +45 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_space.hpp +72 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_space.inl +141 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_space_YCoCg.hpp +60 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_space_YCoCg.inl +107 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/common.hpp +76 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/common.inl +125 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/compatibility.hpp +133 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/compatibility.inl +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/component_wise.hpp +69 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/component_wise.inl +127 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/dual_quaternion.hpp +274 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/dual_quaternion.inl +352 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/easing.hpp +219 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/easing.inl +436 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/euler_angles.hpp +335 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/euler_angles.inl +899 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/extend.hpp +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/extend.inl +48 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/extended_min_max.hpp +137 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/extended_min_max.inl +138 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/exterior_product.hpp +45 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/exterior_product.inl +26 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_exponential.hpp +95 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_exponential.inl +136 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_square_root.hpp +92 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_square_root.inl +75 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_trigonometry.hpp +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_trigonometry.inl +142 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/float_notmalize.inl +13 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/functions.hpp +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/functions.inl +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/gradient_paint.hpp +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/gradient_paint.inl +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/handed_coordinate_space.hpp +50 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/handed_coordinate_space.inl +26 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/hash.hpp +142 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/hash.inl +184 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/integer.hpp +76 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/integer.inl +185 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/intersect.hpp +92 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/intersect.inl +200 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/io.hpp +201 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/io.inl +440 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/log_base.hpp +48 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/log_base.inl +16 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_cross_product.hpp +47 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_cross_product.inl +37 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_decompose.hpp +46 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_decompose.inl +186 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_factorisation.hpp +69 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_factorisation.inl +84 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_interpolation.hpp +60 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_interpolation.inl +129 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_major_storage.hpp +119 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_major_storage.inl +166 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_operation.hpp +103 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_operation.inl +176 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_query.hpp +77 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_query.inl +113 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_transform_2d.hpp +81 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_transform_2d.inl +68 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/mixed_product.hpp +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/mixed_product.inl +15 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/norm.hpp +88 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/norm.inl +95 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/normal.hpp +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/normal.inl +15 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/normalize_dot.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/normalize_dot.inl +16 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/number_precision.hpp +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/number_precision.inl +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/optimum_pow.hpp +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/optimum_pow.inl +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/orthonormalize.hpp +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/orthonormalize.inl +29 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/perpendicular.hpp +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/perpendicular.inl +10 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/polar_coordinates.hpp +48 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/polar_coordinates.inl +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/projection.hpp +43 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/projection.inl +10 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/quaternion.hpp +174 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/quaternion.inl +159 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/range.hpp +98 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/raw_data.hpp +51 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/raw_data.inl +2 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/rotate_normalized_axis.hpp +68 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/rotate_normalized_axis.inl +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/rotate_vector.hpp +123 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/rotate_vector.inl +187 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/scalar_multiplication.hpp +75 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/scalar_relational.hpp +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/scalar_relational.inl +88 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/spline.hpp +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/spline.inl +60 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/std_based_type.hpp +68 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/std_based_type.inl +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/string_cast.hpp +52 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/string_cast.inl +492 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/texture.hpp +46 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/texture.inl +17 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/transform.hpp +60 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/transform.inl +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/transform2.hpp +89 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/transform2.inl +125 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/type_aligned.hpp +982 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/type_aligned.inl +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/type_trait.hpp +85 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/type_trait.inl +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vec_swizzle.hpp +2782 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vector_angle.hpp +57 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vector_angle.inl +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vector_query.hpp +66 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vector_query.inl +154 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/wrap.hpp +37 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/wrap.inl +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/integer.hpp +212 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat2x2.hpp +9 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat2x3.hpp +9 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat2x4.hpp +9 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat3x2.hpp +9 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat3x3.hpp +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat3x4.hpp +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat4x2.hpp +9 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat4x3.hpp +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat4x4.hpp +9 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/matrix.hpp +161 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/packing.hpp +173 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/common.h +240 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/exponential.h +20 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/geometric.h +124 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/integer.h +115 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/matrix.h +1028 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/neon.h +155 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/packing.h +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/platform.h +398 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/trigonometric.h +9 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/vector_relational.h +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/trigonometric.hpp +210 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/vec2.hpp +14 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/vec3.hpp +14 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/vec4.hpp +15 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/vector_relational.hpp +121 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/manual.md +2411 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/readme.md +1209 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/CMakeLists.txt +10 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/LICENSE.txt +7 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/include/graph.h +27 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/include/graph_lite.h +1428 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/src/connected_components.cpp +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/.git-blame-ignore-revs +16 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/.gitignore +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/.gitmodules +3 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/CHANGELOG.md +2199 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/CMakeLists.txt +138 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/CODE_OF_CONDUCT.md +96 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/CONTRIBUTING.md +569 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/LICENSE +249 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/README.md +246 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/AppendOptionIfAvailable.cmake +14 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/DetectSupportedStandards.cmake +47 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/PrintCTestRunTimes.cmake +109 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/PrintNinjaBuildTimes.cmake +101 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustAddSubdir.cmake +6 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustBuildCompilerTargets.cmake +194 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustBuildTargetList.cmake +333 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustCompilerHacks.cmake +110 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustCudaConfig.cmake +178 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustFindThrust.cmake +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustHeaderTesting.cmake +138 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustInstallRules.cmake +48 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustMultiConfig.cmake +129 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustRunExample.cmake +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustRunTest.cmake +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustUtilities.cmake +25 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/detect_compute_archs.cu +43 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/filecheck_smoke_test +1 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/header_test.in +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/wrap_source_file.cpp.in +1 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_adjacent_difference.cuh +254 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_histogram.cuh +780 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_merge_sort.cuh +750 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_radix_sort_downsweep.cuh +778 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_radix_sort_histogram.cuh +257 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_radix_sort_onesweep.cuh +670 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_radix_sort_upsweep.cuh +521 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_reduce.cuh +383 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_reduce_by_key.cuh +542 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_rle.cuh +831 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_scan.cuh +490 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_scan_by_key.cuh +461 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_segment_fixup.cuh +373 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_segmented_radix_sort.cuh +286 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_select_if.cuh +690 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_spmv_orig.cuh +680 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_sub_warp_merge_sort.cuh +327 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_three_way_partition.cuh +614 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_unique_by_key.cuh +571 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/single_pass_scan_operators.cuh +804 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_adjacent_difference.cuh +1352 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_discontinuity.cuh +1150 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_exchange.cuh +1129 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_histogram.cuh +428 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_load.cuh +1306 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_merge_sort.cuh +805 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_radix_rank.cuh +1132 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_radix_sort.cuh +905 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_raking_layout.cuh +145 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_reduce.cuh +608 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_run_length_decode.cuh +392 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_scan.cuh +2131 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_shuffle.cuh +296 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_store.cuh +1070 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/radix_rank_sort_operations.cuh +145 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_histogram_atomic.cuh +77 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_histogram_sort.cuh +221 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_reduce_raking.cuh +221 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_reduce_raking_commutative_only.cuh +195 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_reduce_warp_reductions.cuh +212 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_scan_raking.cuh +660 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_scan_warp_scans.cuh +386 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_scan_warp_scans2.cuh +430 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_scan_warp_scans3.cuh +412 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cmake/cub-config-version.cmake +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cmake/cub-config.cmake +75 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cmake/cub-header-search.cmake +7 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cmake/cub-header-search.cmake.in +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/config.cuh +40 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cub.cuh +108 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/device_double_buffer.cuh +90 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/device_synchronize.cuh +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/exec_check_disable.cuh +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/temporary_storage.cuh +350 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/type_traits.cuh +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_adjacent_difference.cuh +641 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_histogram.cuh +861 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_merge_sort.cuh +876 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_partition.cuh +606 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_radix_sort.cuh +939 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_reduce.cuh +733 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_run_length_encode.cuh +272 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_scan.cuh +873 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_segmented_radix_sort.cuh +882 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_segmented_reduce.cuh +635 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_segmented_sort.cuh +2569 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_select.cuh +447 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_spmv.cuh +168 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_adjacent_difference.cuh +383 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_histogram.cuh +1018 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_merge_sort.cuh +858 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_radix_sort.cuh +1995 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_reduce.cuh +842 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_reduce_by_key.cuh +449 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_rle.cuh +429 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_scan.cuh +449 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_scan_by_key.cuh +437 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_segmented_sort.cuh +1582 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_select_if.cuh +448 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_spmv_orig.cuh +744 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_three_way_partition.cuh +523 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_unique_by_key.cuh +431 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/grid/grid_barrier.cuh +206 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/grid/grid_even_share.cuh +221 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/grid/grid_mapping.cuh +108 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/grid/grid_queue.cuh +239 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/host/mutex.cuh +162 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/arg_index_input_iterator.cuh +254 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/cache_modified_input_iterator.cuh +235 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/cache_modified_output_iterator.cuh +249 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/constant_input_iterator.cuh +230 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/counting_input_iterator.cuh +223 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/discard_output_iterator.cuh +208 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/tex_obj_input_iterator.cuh +318 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/tex_ref_input_iterator.cuh +436 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/transform_input_iterator.cuh +241 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_load.cuh +422 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_operators.cuh +355 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_reduce.cuh +147 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_scan.cuh +263 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_search.cuh +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_sort.cuh +105 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_store.cuh +415 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_allocator.cuh +718 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_arch.cuh +182 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_compiler.cuh +81 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_cpp_dialect.cuh +151 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_debug.cuh +157 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_deprecated.cuh +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_device.cuh +713 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_macro.cuh +118 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_math.cuh +123 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_namespace.cuh +143 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_ptx.cuh +767 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_type.cuh +1225 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/version.cuh +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/specializations/warp_reduce_shfl.cuh +537 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/specializations/warp_reduce_smem.cuh +361 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/specializations/warp_scan_shfl.cuh +624 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/specializations/warp_scan_smem.cuh +389 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_exchange.cuh +473 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_load.cuh +691 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_merge_sort.cuh +172 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_reduce.cuh +608 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_scan.cuh +932 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_store.cuh +537 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/.git-blame-ignore-revs +16 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/.gitignore +4 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/CHANGELOG.md +1372 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/CMakeLists.txt +120 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/CODE_OF_CONDUCT.md +97 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/CONTRIBUTING.md +92 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/LICENSE.TXT +24 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/README.md +215 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/AppendOptionIfAvailable.cmake +13 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubAddSubdir.cmake +4 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubBuildCompilerTargets.cmake +124 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubBuildTargetList.cmake +289 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubCompilerHacks.cmake +93 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubCudaConfig.cmake +147 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubHeaderTesting.cmake +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubInstallRules.cmake +29 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubUtilities.cmake +12 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/header_test.in +52 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/common.mk +195 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_adjacent_difference.cuh +254 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_histogram.cuh +780 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_merge_sort.cuh +750 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_radix_sort_downsweep.cuh +778 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_radix_sort_histogram.cuh +257 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_radix_sort_onesweep.cuh +670 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_radix_sort_upsweep.cuh +521 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_reduce.cuh +383 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_reduce_by_key.cuh +542 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_rle.cuh +831 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_scan.cuh +490 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_scan_by_key.cuh +461 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_segment_fixup.cuh +373 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_segmented_radix_sort.cuh +286 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_select_if.cuh +690 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_spmv_orig.cuh +680 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_sub_warp_merge_sort.cuh +327 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_three_way_partition.cuh +614 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_unique_by_key.cuh +571 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/single_pass_scan_operators.cuh +804 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_adjacent_difference.cuh +1352 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_discontinuity.cuh +1150 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_exchange.cuh +1129 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_histogram.cuh +428 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_load.cuh +1306 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_merge_sort.cuh +805 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_radix_rank.cuh +1132 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_radix_sort.cuh +905 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_raking_layout.cuh +145 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_reduce.cuh +608 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_run_length_decode.cuh +392 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_scan.cuh +2131 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_shuffle.cuh +296 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_store.cuh +1070 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/radix_rank_sort_operations.cuh +145 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_histogram_atomic.cuh +77 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_histogram_sort.cuh +221 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_reduce_raking.cuh +221 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_reduce_raking_commutative_only.cuh +195 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_reduce_warp_reductions.cuh +212 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_scan_raking.cuh +660 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_scan_warp_scans.cuh +386 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_scan_warp_scans2.cuh +430 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_scan_warp_scans3.cuh +412 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cmake/cub-config-version.cmake +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cmake/cub-config.cmake +75 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cmake/cub-header-search.cmake +7 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cmake/cub-header-search.cmake.in +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/config.cuh +40 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cub.cuh +108 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/device_double_buffer.cuh +90 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/device_synchronize.cuh +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/exec_check_disable.cuh +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/temporary_storage.cuh +350 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/type_traits.cuh +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_adjacent_difference.cuh +641 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_histogram.cuh +861 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_merge_sort.cuh +876 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_partition.cuh +606 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_radix_sort.cuh +939 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_reduce.cuh +733 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_run_length_encode.cuh +272 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_scan.cuh +873 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_segmented_radix_sort.cuh +882 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_segmented_reduce.cuh +635 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_segmented_sort.cuh +2569 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_select.cuh +447 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_spmv.cuh +168 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_adjacent_difference.cuh +383 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_histogram.cuh +1018 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_merge_sort.cuh +858 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_radix_sort.cuh +1995 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_reduce.cuh +842 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_reduce_by_key.cuh +449 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_rle.cuh +429 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_scan.cuh +449 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_scan_by_key.cuh +437 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_segmented_sort.cuh +1582 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_select_if.cuh +448 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_spmv_orig.cuh +744 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_three_way_partition.cuh +523 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_unique_by_key.cuh +431 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/grid/grid_barrier.cuh +206 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/grid/grid_even_share.cuh +221 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/grid/grid_mapping.cuh +108 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/grid/grid_queue.cuh +239 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/host/mutex.cuh +162 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/arg_index_input_iterator.cuh +254 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/cache_modified_input_iterator.cuh +235 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/cache_modified_output_iterator.cuh +249 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/constant_input_iterator.cuh +230 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/counting_input_iterator.cuh +223 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/discard_output_iterator.cuh +208 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/tex_obj_input_iterator.cuh +318 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/tex_ref_input_iterator.cuh +436 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/transform_input_iterator.cuh +241 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_load.cuh +422 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_operators.cuh +355 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_reduce.cuh +147 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_scan.cuh +263 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_search.cuh +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_sort.cuh +105 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_store.cuh +415 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_allocator.cuh +718 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_arch.cuh +182 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_compiler.cuh +81 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_cpp_dialect.cuh +151 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_debug.cuh +157 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_deprecated.cuh +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_device.cuh +713 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_macro.cuh +118 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_math.cuh +123 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_namespace.cuh +143 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_ptx.cuh +767 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_type.cuh +1225 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/version.cuh +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/specializations/warp_reduce_shfl.cuh +537 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/specializations/warp_reduce_smem.cuh +361 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/specializations/warp_scan_shfl.cuh +624 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/specializations/warp_scan_smem.cuh +389 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_exchange.cuh +473 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_load.cuh +691 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_merge_sort.cuh +172 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_reduce.cuh +608 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_scan.cuh +932 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_store.cuh +537 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/generate_mk.py +146 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/addressof.h +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/adjacent_difference.h +244 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/advance.h +140 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/allocate_unique.h +443 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/copy.h +148 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/for_each.h +117 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/reduce.h +440 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/scan.h +344 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/sort.h +274 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/transform.h +132 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/binary_search.h +1899 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/FindTBB.cmake +445 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/README.md +215 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/thrust-config-version.cmake +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/thrust-config.cmake +665 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/thrust-header-search.cmake +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/thrust-header-search.cmake.in +8 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/complex.h +1041 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/copy.h +512 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/count.h +231 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/adjacent_difference.inl +89 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/advance.inl +77 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/algorithm_wrapper.h +27 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/alignment.h +230 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/allocator_traits.h +442 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/allocator_traits.inl +463 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/copy_construct_range.h +46 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/copy_construct_range.inl +308 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/default_construct_range.h +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/default_construct_range.inl +110 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/destroy_range.h +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/destroy_range.inl +165 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/fill_construct_range.h +35 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/fill_construct_range.inl +112 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/malloc_allocator.h +51 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/malloc_allocator.inl +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/no_throw_allocator.h +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/tagged_allocator.h +100 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/tagged_allocator.inl +102 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/temporary_allocator.h +84 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/temporary_allocator.inl +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator_aware_execution_policy.h +101 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/binary_search.inl +483 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/caching_allocator.h +47 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/arithmetic.h +303 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/c99math.h +197 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/catrig.h +785 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/catrigf.h +500 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/ccosh.h +215 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/ccoshf.h +143 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/cexp.h +185 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/cexpf.h +163 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/clog.h +214 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/clogf.h +200 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/complex.inl +354 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/cpow.h +57 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/cproj.h +72 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/csinh.h +207 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/csinhf.h +144 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/csqrt.h +154 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/csqrtf.h +149 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/ctanh.h +202 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/ctanhf.h +126 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/math_private.h +136 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/stream.h +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/compiler.h +189 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/compiler_fence.h +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/config.h +40 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/cpp_compatibility.h +84 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/cpp_dialect.h +140 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/debug.h +32 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/deprecated.h +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/device_system.h +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/exec_check_disable.h +43 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/forceinline.h +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/global_workarounds.h +27 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/host_device.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/host_system.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/memory_resource.h +35 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/namespace.h +120 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/simple_defines.h +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config.h +24 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/contiguous_storage.h +235 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/contiguous_storage.inl +551 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/copy.h +90 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/copy.inl +128 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/copy_if.h +71 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/copy_if.inl +105 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/count.inl +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/cpp11_required.h +26 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/cpp14_required.h +26 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/cstdint.h +83 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/dependencies_aware_execution_policy.h +106 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_delete.inl +47 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_free.inl +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_malloc.inl +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_new.inl +59 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_ptr.inl +67 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/distance.inl +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/equal.inl +83 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/event_error.h +164 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/execute_with_allocator.h +149 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/execute_with_allocator_fwd.h +106 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/execute_with_dependencies.h +267 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/execution_policy.h +76 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/extrema.inl +168 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/fill.inl +89 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/find.inl +111 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/for_each.inl +89 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/function.h +161 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/actor.h +155 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/actor.inl +112 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/argument.h +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/composite.h +164 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/arithmetic_operators.h +431 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/assignment_operator.h +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/bitwise_operators.h +337 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/compound_assignment_operators.h +512 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/logical_operators.h +143 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/operator_adaptors.h +136 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/relational_operators.h +322 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators.h +25 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/placeholder.h +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/value.h +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional.inl +124 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/gather.inl +164 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/generate.inl +96 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/get_iterator_value.h +55 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/inner_product.inl +104 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/integer_math.h +155 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/integer_traits.h +130 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/internal_functional.h +558 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/logical.inl +98 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/malloc_and_free.h +83 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/memory_algorithms.h +208 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/memory_wrapper.h +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/merge.inl +223 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/minmax.h +51 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/mismatch.inl +93 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/modern_gcc_required.h +26 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/mpl/math.h +175 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/numeric_traits.h +129 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/numeric_wrapper.h +27 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/overlapped_copy.h +131 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/pair.inl +228 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/partition.inl +414 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/pointer.h +249 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/pointer.inl +206 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/preprocessor.h +1182 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/range/head_flags.h +229 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/range/tail_flags.h +133 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/raw_pointer_cast.h +50 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/raw_reference_cast.h +332 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/reduce.inl +279 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/reference.h +510 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/reference_forward_declaration.h +28 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/remove.inl +249 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/replace.inl +221 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/reverse.inl +90 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/scan.inl +525 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/scatter.inl +166 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/select_system.h +84 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/seq.h +52 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/sequence.inl +117 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/set_operations.inl +867 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/shuffle.inl +85 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/sort.inl +407 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/static_assert.h +91 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/static_map.h +169 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/swap.h +35 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/swap.inl +21 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/swap_ranges.inl +67 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tabulate.inl +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/temporary_array.h +181 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/temporary_array.inl +167 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/temporary_buffer.h +75 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/transform.inl +250 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/transform_reduce.inl +71 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/transform_scan.inl +120 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/trivial_sequence.h +96 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tuple.inl +1002 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tuple_algorithms.h +110 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tuple_meta_transform.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tuple_transform.h +84 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_deduction.h +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/function_traits.h +97 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/has_member_function.h +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/has_nested_type.h +32 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/has_trivial_assign.h +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/is_call_possible.h +162 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/is_metafunction_defined.h +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/iterator/is_discard_iterator.h +39 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/iterator/is_output_iterator.h +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/minimum_type.h +163 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/pointer_traits.h +395 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/result_of_adaptable_function.h +64 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits.h +735 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/uninitialized_copy.inl +98 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/uninitialized_fill.inl +93 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/unique.inl +335 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/use_default.h +26 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/util/align.h +60 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/vector_base.h +587 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/vector_base.inl +1320 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_allocator.h +142 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_delete.h +55 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_free.h +67 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_make_unique.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_malloc.h +102 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_malloc_allocator.h +182 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_new.h +86 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_new_allocator.h +170 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_ptr.h +190 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_reference.h +988 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_vector.h +491 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/distance.h +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/equal.h +235 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/event.h +26 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/execution_policy.h +393 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/extrema.h +801 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/fill.h +206 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/find.h +381 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/for_each.h +278 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/functional.h +1717 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/future.h +176 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/gather.h +445 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/generate.h +211 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/host_vector.h +510 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/inner_product.h +262 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/constant_iterator.h +250 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/counting_iterator.h +246 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/any_assign.h +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/any_system_tag.h +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/constant_iterator_base.h +71 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/counting_iterator.inl +142 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/device_system_tag.h +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/discard_iterator_base.h +64 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/distance_from_result.h +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/host_system_tag.h +30 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/is_iterator_category.h +59 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_adaptor_base.h +112 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_category_to_system.h +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_category_to_traversal.h +130 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_category_with_system_and_traversal.h +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_facade_category.h +252 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_traits.inl +139 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_traversal_tags.h +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/join_iterator.h +133 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/minimum_category.h +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/minimum_system.h +81 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/normal_iterator.h +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/permutation_iterator_base.h +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/retag.h +147 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/reverse_iterator.inl +116 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/reverse_iterator_base.h +43 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/tagged_iterator.h +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/transform_input_output_iterator.inl +115 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/transform_iterator.inl +73 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/transform_output_iterator.inl +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/tuple_of_iterator_references.h +146 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/universal_categories.h +86 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/zip_iterator.inl +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/zip_iterator_base.h +353 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/discard_iterator.h +174 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/iterator_adaptor.h +242 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/iterator_categories.h +223 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/iterator_facade.h +542 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/iterator_traits.h +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/permutation_iterator.h +216 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/retag.h +69 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/reverse_iterator.h +237 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/transform_input_output_iterator.h +162 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/transform_iterator.h +355 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/transform_output_iterator.h +162 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/zip_iterator.h +258 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/limits.h +18 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/logical.h +275 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/memory.h +545 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/merge.h +677 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mismatch.h +257 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/allocator.h +250 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/device_memory_resource.h +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/disjoint_pool.h +489 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/disjoint_sync_pool.h +119 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/disjoint_tls_pool.h +69 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/fancy_pointer_resource.h +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/host_memory_resource.h +32 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/memory_resource.h +217 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/new.h +89 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/polymorphic_adaptor.h +57 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/pool.h +506 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/pool_options.h +127 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/sync_pool.h +116 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/tls_pool.h +64 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/universal_memory_resource.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/validator.h +51 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/optional.h +2885 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/pair.h +281 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/partition.h +1436 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/per_device_resource.h +102 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/discard_block_engine.inl +213 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/linear_congruential_engine.inl +170 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/linear_congruential_engine_discard.h +108 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/linear_feedback_shift_engine.inl +166 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/linear_feedback_shift_engine_wordmask.h +48 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/mod.h +98 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/normal_distribution.inl +256 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/normal_distribution_base.h +148 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/random_core_access.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/subtract_with_carry_engine.inl +211 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/uniform_int_distribution.inl +247 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/uniform_real_distribution.inl +232 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/xor_combine_engine.inl +216 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/xor_combine_engine_max.h +325 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/discard_block_engine.h +251 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/linear_congruential_engine.h +294 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/linear_feedback_shift_engine.h +229 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/normal_distribution.h +274 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/subtract_with_carry_engine.h +255 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/uniform_int_distribution.h +276 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/uniform_real_distribution.h +273 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/xor_combine_engine.h +270 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random.h +117 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/reduce.h +781 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/remove.h +802 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/replace.h +819 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/reverse.h +211 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/scan.h +1656 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/scatter.h +419 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/sequence.h +293 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/set_operations.h +2959 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/shuffle.h +179 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/sort.h +1358 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/swap.h +184 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/adjacent_difference.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/assign_value.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/binary_search.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/copy.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/copy_if.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/count.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/equal.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/execution_policy.h +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/extrema.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/fill.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/find.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/for_each.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/gather.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/generate.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/get_value.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/inner_product.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/iter_swap.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/logical.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/malloc_and_free.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/memory.inl +50 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/merge.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/mismatch.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/par.h +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/partition.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/per_device_resource.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/reduce.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/reduce_by_key.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/remove.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/replace.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/reverse.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/scan.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/scan_by_key.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/scatter.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/sequence.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/set_operations.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/sort.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/swap_ranges.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/tabulate.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/temporary_buffer.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/transform.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/transform_reduce.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/transform_scan.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/uninitialized_copy.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/uninitialized_fill.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/unique.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/unique_by_key.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/vector.inl +125 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/execution_policy.h +156 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/memory.h +100 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/memory_resource.h +71 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/pointer.h +117 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/vector.h +82 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/config.h +109 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/adjacent_difference.h +541 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/assign_value.h +102 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/copy.h +537 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/customization.h +127 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/exclusive_scan.h +201 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/for_each.h +158 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/inclusive_scan.h +193 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/reduce.h +349 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/scan.h +33 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/sort.h +521 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/transform.h +162 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/binary_search.h +19 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/copy.h +197 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/copy_if.h +859 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/core/agent_launcher.h +1186 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/core/alignment.h +250 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/core/triple_chevron_launch.h +975 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/core/util.h +769 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/count.h +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/cross_system.h +345 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/dispatch.h +78 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/equal.h +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/error.inl +99 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/execution_policy.h +100 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/extrema.h +572 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/fill.h +95 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/find.h +218 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/for_each.h +109 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/future.inl +1372 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/gather.h +107 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/generate.h +90 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/get_value.h +98 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/guarded_cuda_runtime_api.h +39 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/guarded_driver_types.h +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/inner_product.h +94 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/internal/copy_cross_system.h +244 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/internal/copy_device_to_device.h +64 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/iter_swap.h +67 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/logical.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/make_unsigned_special.h +43 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/malloc_and_free.h +103 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/memory.inl +52 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/merge.h +1019 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/mismatch.h +116 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/par.h +257 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/par_to_seq.h +92 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/parallel_for.h +178 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/partition.h +1148 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/per_device_resource.h +72 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/reduce.h +1077 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/reduce_by_key.h +1170 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/remove.h +134 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/replace.h +213 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/reverse.h +97 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/scan.h +370 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/scan_by_key.h +1007 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/scatter.h +106 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/sequence.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/set_operations.h +2002 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/sort.h +648 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/swap_ranges.h +107 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/tabulate.h +88 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/temporary_buffer.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/terminate.h +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/transform.h +426 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/transform_reduce.h +68 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/transform_scan.h +113 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/uninitialized_copy.h +116 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/uninitialized_fill.h +114 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/unique.h +803 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/unique_by_key.h +936 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/util.h +653 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/error.h +182 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/execution_policy.h +31 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/experimental/pinned_allocator.h +243 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/future.h +73 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/memory.h +109 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/memory_resource.h +126 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/pointer.h +137 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/vector.h +89 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/adjacent_difference.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/assign_value.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/copy.h +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/for_each.h +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/reduce.h +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/scan.h +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/sort.h +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/transform.h +34 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/binary_search.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/copy.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/copy_if.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/count.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/equal.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/extrema.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/fill.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/find.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/for_each.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/gather.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/generate.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/get_value.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/inner_product.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/iter_swap.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/logical.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/malloc_and_free.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/merge.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/mismatch.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/partition.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/per_device_resource.h +41 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/reduce.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/reduce_by_key.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/remove.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/replace.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/reverse.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/scan.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/scan_by_key.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/scatter.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/sequence.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/set_operations.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/sort.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/swap_ranges.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/tabulate.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/temporary_buffer.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/transform.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/transform_reduce.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/transform_scan.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/uninitialized_copy.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/uninitialized_fill.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/unique.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/unique_by_key.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/bad_alloc.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/errno.h +119 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/error_category.inl +237 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/error_code.inl +198 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/error_condition.inl +134 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/adjacent_difference.h +57 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/adjacent_difference.inl +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/advance.h +40 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/advance.inl +66 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/binary_search.h +173 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/binary_search.inl +401 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/copy.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/copy.inl +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/copy_if.h +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/copy_if.inl +160 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/count.h +50 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/count.inl +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/distance.h +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/distance.inl +78 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/equal.h +47 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/equal.inl +57 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/extrema.h +88 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/extrema.inl +262 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/fill.h +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/find.h +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/find.inl +149 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/for_each.h +77 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/gather.h +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/gather.inl +106 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/generate.h +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/generate.inl +98 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/inner_product.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/inner_product.inl +71 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/logical.h +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/memory.h +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/memory.inl +103 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/merge.h +90 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/merge.inl +130 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/mismatch.h +57 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/mismatch.inl +73 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/partition.h +169 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/partition.inl +247 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/per_device_resource.h +46 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reduce.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reduce.inl +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reduce_by_key.h +88 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reduce_by_key.inl +198 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/remove.h +112 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/remove.inl +149 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/replace.h +97 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/replace.inl +177 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reverse.h +55 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reverse.inl +74 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scalar/binary_search.h +84 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scalar/binary_search.inl +157 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scan.h +98 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scan.inl +127 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scan_by_key.h +143 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scan_by_key.inl +244 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scatter.h +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scatter.inl +95 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/select_system.h +124 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/select_system.inl +178 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/select_system_exists.h +167 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/sequence.h +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/sequence.inl +104 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/set_operations.h +318 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/set_operations.inl +476 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/shuffle.h +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/shuffle.inl +190 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/sort.h +153 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/sort.inl +219 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/swap_ranges.h +46 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/swap_ranges.inl +77 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/tabulate.h +48 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/tabulate.inl +59 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/tag.h +47 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/temporary_buffer.h +57 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/temporary_buffer.inl +84 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform.h +105 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform.inl +189 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform_reduce.h +52 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform_reduce.inl +55 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform_scan.h +67 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform_scan.inl +95 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/uninitialized_copy.h +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/uninitialized_copy.inl +192 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/uninitialized_fill.h +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/uninitialized_fill.inl +133 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/unique.h +77 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/unique.inl +112 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/unique_by_key.h +94 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/unique_by_key.inl +139 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/internal/decompose.h +113 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/adjacent_difference.h +73 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/assign_value.h +42 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/binary_search.h +158 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/copy.h +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/copy.inl +144 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/copy_backward.h +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/copy_if.h +72 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/count.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/equal.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/execution_policy.h +75 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/extrema.h +138 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/fill.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/find.h +70 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/for_each.h +94 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/gather.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/general_copy.h +146 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/generate.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/get_value.h +45 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/inner_product.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/insertion_sort.h +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/iter_swap.h +46 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/logical.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/malloc_and_free.h +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/merge.h +79 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/merge.inl +152 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/mismatch.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/partition.h +340 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/per_device_resource.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/reduce.h +72 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/reduce_by_key.h +102 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/remove.h +201 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/replace.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/reverse.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/scan.h +121 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/scan_by_key.h +149 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/scatter.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/sequence.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/set_operations.h +223 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/sort.h +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/sort.inl +204 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_merge_sort.h +59 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_merge_sort.inl +397 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_primitive_sort.h +55 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_primitive_sort.inl +160 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_radix_sort.h +55 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_radix_sort.inl +595 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/swap_ranges.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/tabulate.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/temporary_buffer.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/transform.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/transform_reduce.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/transform_scan.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/trivial_copy.h +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/uninitialized_copy.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/uninitialized_fill.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/unique.h +96 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/unique_by_key.h +115 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/system_error.inl +112 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/error_code.h +522 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/adjacent_difference.h +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/assign_value.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/binary_search.h +72 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/copy.h +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/copy.inl +136 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/copy_if.h +50 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/copy_if.inl +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/count.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/default_decomposition.h +44 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/default_decomposition.inl +59 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/equal.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/execution_policy.h +106 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/extrema.h +66 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/fill.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/find.h +50 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/for_each.h +59 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/for_each.inl +95 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/gather.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/generate.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/get_value.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/inner_product.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/iter_swap.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/logical.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/malloc_and_free.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/memory.inl +83 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/merge.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/mismatch.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/par.h +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/partition.h +90 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/partition.inl +107 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/per_device_resource.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/pragma_omp.h +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce.h +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce.inl +71 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce_by_key.h +60 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce_by_key.inl +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce_intervals.h +52 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce_intervals.inl +94 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/remove.h +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/remove.inl +93 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/replace.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reverse.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/scan.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/scan_by_key.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/scatter.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/sequence.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/set_operations.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/sort.h +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/sort.inl +266 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/swap_ranges.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/tabulate.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/temporary_buffer.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/transform.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/transform_reduce.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/transform_scan.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/uninitialized_copy.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/uninitialized_fill.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/unique.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/unique.inl +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/unique_by_key.h +66 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/unique_by_key.inl +73 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/execution_policy.h +155 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/memory.h +101 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/memory_resource.h +69 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/pointer.h +117 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/vector.h +82 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/system_error.h +178 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/adjacent_difference.h +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/assign_value.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/binary_search.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/copy.h +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/copy.inl +136 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/copy_if.h +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/copy_if.inl +130 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/count.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/equal.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/execution_policy.h +82 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/extrema.h +66 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/fill.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/find.h +45 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/for_each.h +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/for_each.inl +99 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/gather.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/generate.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/get_value.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/inner_product.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/iter_swap.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/logical.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/malloc_and_free.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/memory.inl +85 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/merge.h +69 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/merge.inl +287 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/mismatch.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/par.h +61 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/partition.h +86 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/partition.inl +101 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/per_device_resource.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce.h +53 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce.inl +130 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce_by_key.h +56 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce_by_key.inl +341 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce_intervals.h +124 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/remove.h +80 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/remove.inl +93 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/replace.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reverse.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/scan.h +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/scan.inl +258 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/scan_by_key.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/scatter.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/sequence.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/set_operations.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/sort.h +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/sort.inl +264 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/swap_ranges.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/tabulate.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/temporary_buffer.h +22 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/transform.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/transform_reduce.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/transform_scan.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/uninitialized_copy.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/uninitialized_fill.h +23 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/unique.h +58 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/unique.inl +65 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/unique_by_key.h +66 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/unique_by_key.inl +73 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/execution_policy.h +155 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/memory.h +103 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/memory_resource.h +69 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/pointer.h +117 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/vector.h +82 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system_error.h +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/tabulate.h +125 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/transform.h +721 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/transform_reduce.h +194 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/transform_scan.h +320 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/tuple.h +568 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/integer_sequence.h +261 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_contiguous_iterator.h +185 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_execution_policy.h +49 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_operator_less_or_greater_function_object.h +135 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_operator_plus_function_object.h +76 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_trivially_relocatable.h +251 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/logical_metafunctions.h +178 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/remove_cvref.h +54 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/void_t.h +63 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/uninitialized_copy.h +299 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/uninitialized_fill.h +272 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/unique.h +965 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/universal_allocator.h +77 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/universal_ptr.h +26 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/universal_vector.h +57 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/version.h +75 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/zip_function.h +210 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/CMakeLists.txt +62 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/hashtable.h +159 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/optional_assert.h +38 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/par.h +161 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/public.h +531 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/sparse.h +168 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/utils.h +193 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/vec_dh.h +449 -0
- smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/src/detect_cuda.cpp +36 -0
- smart_bbox-0.1.13/smart/vendor/manifold/thrust.diff +49 -0
- smart_bbox-0.1.13/smart_bbox.egg-info/PKG-INFO +397 -0
- smart_bbox-0.1.13/smart_bbox.egg-info/SOURCES.txt +1837 -0
- smart_bbox-0.1.13/smart_bbox.egg-info/dependency_links.txt +1 -0
- smart_bbox-0.1.13/smart_bbox.egg-info/entry_points.txt +7 -0
- smart_bbox-0.1.13/smart_bbox.egg-info/requires.txt +20 -0
- smart_bbox-0.1.13/smart_bbox.egg-info/top_level.txt +3 -0
- smart_bbox-0.1.13/tests/test_config.py +1362 -0
- smart_bbox-0.1.13/tests/test_cpp_extension.py +3128 -0
- smart_bbox-0.1.13/tests/test_evaluation.py +30 -0
- smart_bbox-0.1.13/tests/test_native_compat.py +1217 -0
- smart_bbox-0.1.13/tests/test_release_wheel_audit.py +357 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
message: "If you use SMART, please cite the 3DV 2024 paper."
|
|
3
|
+
title: "Split, Merge, and Refine: Fitting Tight Bounding Boxes via Over-Segmentation and Iterative Search"
|
|
4
|
+
authors:
|
|
5
|
+
- family-names: "Park"
|
|
6
|
+
given-names: "Chanhyeok"
|
|
7
|
+
- family-names: "Sung"
|
|
8
|
+
given-names: "Minhyuk"
|
|
9
|
+
year: 2024
|
|
10
|
+
url: "https://github.com/chpark1111/SMART"
|
|
11
|
+
repository-code: "https://github.com/chpark1111/SMART"
|
|
12
|
+
license: "CC-BY-NC-SA-4.0"
|
|
13
|
+
preferred-citation:
|
|
14
|
+
type: conference-paper
|
|
15
|
+
title: "Split, Merge, and Refine: Fitting Tight Bounding Boxes via Over-Segmentation and Iterative Search"
|
|
16
|
+
authors:
|
|
17
|
+
- family-names: "Park"
|
|
18
|
+
given-names: "Chanhyeok"
|
|
19
|
+
- family-names: "Sung"
|
|
20
|
+
given-names: "Minhyuk"
|
|
21
|
+
conference:
|
|
22
|
+
name: "International Conference on 3D Vision"
|
|
23
|
+
year: 2024
|
|
24
|
+
url: "https://arxiv.org/abs/2304.04336"
|
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
Attribution-NonCommercial-ShareAlike 4.0 International
|
|
2
|
+
|
|
3
|
+
=======================================================================
|
|
4
|
+
|
|
5
|
+
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
|
6
|
+
does not provide legal services or legal advice. Distribution of
|
|
7
|
+
Creative Commons public licenses does not create a lawyer-client or
|
|
8
|
+
other relationship. Creative Commons makes its licenses and related
|
|
9
|
+
information available on an "as-is" basis. Creative Commons gives no
|
|
10
|
+
warranties regarding its licenses, any material licensed under their
|
|
11
|
+
terms and conditions, or any related information. Creative Commons
|
|
12
|
+
disclaims all liability for damages resulting from their use to the
|
|
13
|
+
fullest extent possible.
|
|
14
|
+
|
|
15
|
+
Using Creative Commons Public Licenses
|
|
16
|
+
|
|
17
|
+
Creative Commons public licenses provide a standard set of terms and
|
|
18
|
+
conditions that creators and other rights holders may use to share
|
|
19
|
+
original works of authorship and other material subject to copyright
|
|
20
|
+
and certain other rights specified in the public license below. The
|
|
21
|
+
following considerations are for informational purposes only, are not
|
|
22
|
+
exhaustive, and do not form part of our licenses.
|
|
23
|
+
|
|
24
|
+
Considerations for licensors: Our public licenses are
|
|
25
|
+
intended for use by those authorized to give the public
|
|
26
|
+
permission to use material in ways otherwise restricted by
|
|
27
|
+
copyright and certain other rights. Our licenses are
|
|
28
|
+
irrevocable. Licensors should read and understand the terms
|
|
29
|
+
and conditions of the license they choose before applying it.
|
|
30
|
+
Licensors should also secure all rights necessary before
|
|
31
|
+
applying our licenses so that the public can reuse the
|
|
32
|
+
material as expected. Licensors should clearly mark any
|
|
33
|
+
material not subject to the license. This includes other CC-
|
|
34
|
+
licensed material, or material used under an exception or
|
|
35
|
+
limitation to copyright. More considerations for licensors:
|
|
36
|
+
wiki.creativecommons.org/Considerations_for_licensors
|
|
37
|
+
|
|
38
|
+
Considerations for the public: By using one of our public
|
|
39
|
+
licenses, a licensor grants the public permission to use the
|
|
40
|
+
licensed material under specified terms and conditions. If
|
|
41
|
+
the licensor's permission is not necessary for any reason--for
|
|
42
|
+
example, because of any applicable exception or limitation to
|
|
43
|
+
copyright--then that use is not regulated by the license. Our
|
|
44
|
+
licenses grant only permissions under copyright and certain
|
|
45
|
+
other rights that a licensor has authority to grant. Use of
|
|
46
|
+
the licensed material may still be restricted for other
|
|
47
|
+
reasons, including because others have copyright or other
|
|
48
|
+
rights in the material. A licensor may make special requests,
|
|
49
|
+
such as asking that all changes be marked or described.
|
|
50
|
+
Although not required by our licenses, you are encouraged to
|
|
51
|
+
respect those requests where reasonable. More considerations
|
|
52
|
+
for the public:
|
|
53
|
+
wiki.creativecommons.org/Considerations_for_licensees
|
|
54
|
+
|
|
55
|
+
=======================================================================
|
|
56
|
+
|
|
57
|
+
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
|
|
58
|
+
Public License
|
|
59
|
+
|
|
60
|
+
By exercising the Licensed Rights (defined below), You accept and agree
|
|
61
|
+
to be bound by the terms and conditions of this Creative Commons
|
|
62
|
+
Attribution-NonCommercial-ShareAlike 4.0 International Public License
|
|
63
|
+
("Public License"). To the extent this Public License may be
|
|
64
|
+
interpreted as a contract, You are granted the Licensed Rights in
|
|
65
|
+
consideration of Your acceptance of these terms and conditions, and the
|
|
66
|
+
Licensor grants You such rights in consideration of benefits the
|
|
67
|
+
Licensor receives from making the Licensed Material available under
|
|
68
|
+
these terms and conditions.
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
Section 1 -- Definitions.
|
|
72
|
+
|
|
73
|
+
a. Adapted Material means material subject to Copyright and Similar
|
|
74
|
+
Rights that is derived from or based upon the Licensed Material
|
|
75
|
+
and in which the Licensed Material is translated, altered,
|
|
76
|
+
arranged, transformed, or otherwise modified in a manner requiring
|
|
77
|
+
permission under the Copyright and Similar Rights held by the
|
|
78
|
+
Licensor. For purposes of this Public License, where the Licensed
|
|
79
|
+
Material is a musical work, performance, or sound recording,
|
|
80
|
+
Adapted Material is always produced where the Licensed Material is
|
|
81
|
+
synched in timed relation with a moving image.
|
|
82
|
+
|
|
83
|
+
b. Adapter's License means the license You apply to Your Copyright
|
|
84
|
+
and Similar Rights in Your contributions to Adapted Material in
|
|
85
|
+
accordance with the terms and conditions of this Public License.
|
|
86
|
+
|
|
87
|
+
c. BY-NC-SA Compatible License means a license listed at
|
|
88
|
+
creativecommons.org/compatiblelicenses, approved by Creative
|
|
89
|
+
Commons as essentially the equivalent of this Public License.
|
|
90
|
+
|
|
91
|
+
d. Copyright and Similar Rights means copyright and/or similar rights
|
|
92
|
+
closely related to copyright including, without limitation,
|
|
93
|
+
performance, broadcast, sound recording, and Sui Generis Database
|
|
94
|
+
Rights, without regard to how the rights are labeled or
|
|
95
|
+
categorized. For purposes of this Public License, the rights
|
|
96
|
+
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
|
97
|
+
Rights.
|
|
98
|
+
|
|
99
|
+
e. Effective Technological Measures means those measures that, in the
|
|
100
|
+
absence of proper authority, may not be circumvented under laws
|
|
101
|
+
fulfilling obligations under Article 11 of the WIPO Copyright
|
|
102
|
+
Treaty adopted on December 20, 1996, and/or similar international
|
|
103
|
+
agreements.
|
|
104
|
+
|
|
105
|
+
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
|
106
|
+
any other exception or limitation to Copyright and Similar Rights
|
|
107
|
+
that applies to Your use of the Licensed Material.
|
|
108
|
+
|
|
109
|
+
g. License Elements means the license attributes listed in the name
|
|
110
|
+
of a Creative Commons Public License. The License Elements of this
|
|
111
|
+
Public License are Attribution, NonCommercial, and ShareAlike.
|
|
112
|
+
|
|
113
|
+
h. Licensed Material means the artistic or literary work, database,
|
|
114
|
+
or other material to which the Licensor applied this Public
|
|
115
|
+
License.
|
|
116
|
+
|
|
117
|
+
i. Licensed Rights means the rights granted to You subject to the
|
|
118
|
+
terms and conditions of this Public License, which are limited to
|
|
119
|
+
all Copyright and Similar Rights that apply to Your use of the
|
|
120
|
+
Licensed Material and that the Licensor has authority to license.
|
|
121
|
+
|
|
122
|
+
j. Licensor means the individual(s) or entity(ies) granting rights
|
|
123
|
+
under this Public License.
|
|
124
|
+
|
|
125
|
+
k. NonCommercial means not primarily intended for or directed towards
|
|
126
|
+
commercial advantage or monetary compensation. For purposes of
|
|
127
|
+
this Public License, the exchange of the Licensed Material for
|
|
128
|
+
other material subject to Copyright and Similar Rights by digital
|
|
129
|
+
file-sharing or similar means is NonCommercial provided there is
|
|
130
|
+
no payment of monetary compensation in connection with the
|
|
131
|
+
exchange.
|
|
132
|
+
|
|
133
|
+
l. Share means to provide material to the public by any means or
|
|
134
|
+
process that requires permission under the Licensed Rights, such
|
|
135
|
+
as reproduction, public display, public performance, distribution,
|
|
136
|
+
dissemination, communication, or importation, and to make material
|
|
137
|
+
available to the public including in ways that members of the
|
|
138
|
+
public may access the material from a place and at a time
|
|
139
|
+
individually chosen by them.
|
|
140
|
+
|
|
141
|
+
m. Sui Generis Database Rights means rights other than copyright
|
|
142
|
+
resulting from Directive 96/9/EC of the European Parliament and of
|
|
143
|
+
the Council of 11 March 1996 on the legal protection of databases,
|
|
144
|
+
as amended and/or succeeded, as well as other essentially
|
|
145
|
+
equivalent rights anywhere in the world.
|
|
146
|
+
|
|
147
|
+
n. You means the individual or entity exercising the Licensed Rights
|
|
148
|
+
under this Public License. Your has a corresponding meaning.
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
Section 2 -- Scope.
|
|
152
|
+
|
|
153
|
+
a. License grant.
|
|
154
|
+
|
|
155
|
+
1. Subject to the terms and conditions of this Public License,
|
|
156
|
+
the Licensor hereby grants You a worldwide, royalty-free,
|
|
157
|
+
non-sublicensable, non-exclusive, irrevocable license to
|
|
158
|
+
exercise the Licensed Rights in the Licensed Material to:
|
|
159
|
+
|
|
160
|
+
a. reproduce and Share the Licensed Material, in whole or
|
|
161
|
+
in part, for NonCommercial purposes only; and
|
|
162
|
+
|
|
163
|
+
b. produce, reproduce, and Share Adapted Material for
|
|
164
|
+
NonCommercial purposes only.
|
|
165
|
+
|
|
166
|
+
2. Exceptions and Limitations. For the avoidance of doubt, where
|
|
167
|
+
Exceptions and Limitations apply to Your use, this Public
|
|
168
|
+
License does not apply, and You do not need to comply with
|
|
169
|
+
its terms and conditions.
|
|
170
|
+
|
|
171
|
+
3. Term. The term of this Public License is specified in Section
|
|
172
|
+
6(a).
|
|
173
|
+
|
|
174
|
+
4. Media and formats; technical modifications allowed. The
|
|
175
|
+
Licensor authorizes You to exercise the Licensed Rights in
|
|
176
|
+
all media and formats whether now known or hereafter created,
|
|
177
|
+
and to make technical modifications necessary to do so. The
|
|
178
|
+
Licensor waives and/or agrees not to assert any right or
|
|
179
|
+
authority to forbid You from making technical modifications
|
|
180
|
+
necessary to exercise the Licensed Rights, including
|
|
181
|
+
technical modifications necessary to circumvent Effective
|
|
182
|
+
Technological Measures. For purposes of this Public License,
|
|
183
|
+
simply making modifications authorized by this Section 2(a)
|
|
184
|
+
(4) never produces Adapted Material.
|
|
185
|
+
|
|
186
|
+
5. Downstream recipients.
|
|
187
|
+
|
|
188
|
+
a. Offer from the Licensor -- Licensed Material. Every
|
|
189
|
+
recipient of the Licensed Material automatically
|
|
190
|
+
receives an offer from the Licensor to exercise the
|
|
191
|
+
Licensed Rights under the terms and conditions of this
|
|
192
|
+
Public License.
|
|
193
|
+
|
|
194
|
+
b. Additional offer from the Licensor -- Adapted Material.
|
|
195
|
+
Every recipient of Adapted Material from You
|
|
196
|
+
automatically receives an offer from the Licensor to
|
|
197
|
+
exercise the Licensed Rights in the Adapted Material
|
|
198
|
+
under the conditions of the Adapter's License You apply.
|
|
199
|
+
|
|
200
|
+
c. No downstream restrictions. You may not offer or impose
|
|
201
|
+
any additional or different terms or conditions on, or
|
|
202
|
+
apply any Effective Technological Measures to, the
|
|
203
|
+
Licensed Material if doing so restricts exercise of the
|
|
204
|
+
Licensed Rights by any recipient of the Licensed
|
|
205
|
+
Material.
|
|
206
|
+
|
|
207
|
+
6. No endorsement. Nothing in this Public License constitutes or
|
|
208
|
+
may be construed as permission to assert or imply that You
|
|
209
|
+
are, or that Your use of the Licensed Material is, connected
|
|
210
|
+
with, or sponsored, endorsed, or granted official status by,
|
|
211
|
+
the Licensor or others designated to receive attribution as
|
|
212
|
+
provided in Section 3(a)(1)(A)(i).
|
|
213
|
+
|
|
214
|
+
b. Other rights.
|
|
215
|
+
|
|
216
|
+
1. Moral rights, such as the right of integrity, are not
|
|
217
|
+
licensed under this Public License, nor are publicity,
|
|
218
|
+
privacy, and/or other similar personality rights; however, to
|
|
219
|
+
the extent possible, the Licensor waives and/or agrees not to
|
|
220
|
+
assert any such rights held by the Licensor to the limited
|
|
221
|
+
extent necessary to allow You to exercise the Licensed
|
|
222
|
+
Rights, but not otherwise.
|
|
223
|
+
|
|
224
|
+
2. Patent and trademark rights are not licensed under this
|
|
225
|
+
Public License.
|
|
226
|
+
|
|
227
|
+
3. To the extent possible, the Licensor waives any right to
|
|
228
|
+
collect royalties from You for the exercise of the Licensed
|
|
229
|
+
Rights, whether directly or through a collecting society
|
|
230
|
+
under any voluntary or waivable statutory or compulsory
|
|
231
|
+
licensing scheme. In all other cases the Licensor expressly
|
|
232
|
+
reserves any right to collect such royalties, including when
|
|
233
|
+
the Licensed Material is used other than for NonCommercial
|
|
234
|
+
purposes.
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
Section 3 -- License Conditions.
|
|
238
|
+
|
|
239
|
+
Your exercise of the Licensed Rights is expressly made subject to the
|
|
240
|
+
following conditions.
|
|
241
|
+
|
|
242
|
+
a. Attribution.
|
|
243
|
+
|
|
244
|
+
1. If You Share the Licensed Material (including in modified
|
|
245
|
+
form), You must:
|
|
246
|
+
|
|
247
|
+
a. retain the following if it is supplied by the Licensor
|
|
248
|
+
with the Licensed Material:
|
|
249
|
+
|
|
250
|
+
i. identification of the creator(s) of the Licensed
|
|
251
|
+
Material and any others designated to receive
|
|
252
|
+
attribution, in any reasonable manner requested by
|
|
253
|
+
the Licensor (including by pseudonym if
|
|
254
|
+
designated);
|
|
255
|
+
|
|
256
|
+
ii. a copyright notice;
|
|
257
|
+
|
|
258
|
+
iii. a notice that refers to this Public License;
|
|
259
|
+
|
|
260
|
+
iv. a notice that refers to the disclaimer of
|
|
261
|
+
warranties;
|
|
262
|
+
|
|
263
|
+
v. a URI or hyperlink to the Licensed Material to the
|
|
264
|
+
extent reasonably practicable;
|
|
265
|
+
|
|
266
|
+
b. indicate if You modified the Licensed Material and
|
|
267
|
+
retain an indication of any previous modifications; and
|
|
268
|
+
|
|
269
|
+
c. indicate the Licensed Material is licensed under this
|
|
270
|
+
Public License, and include the text of, or the URI or
|
|
271
|
+
hyperlink to, this Public License.
|
|
272
|
+
|
|
273
|
+
2. You may satisfy the conditions in Section 3(a)(1) in any
|
|
274
|
+
reasonable manner based on the medium, means, and context in
|
|
275
|
+
which You Share the Licensed Material. For example, it may be
|
|
276
|
+
reasonable to satisfy the conditions by providing a URI or
|
|
277
|
+
hyperlink to a resource that includes the required
|
|
278
|
+
information.
|
|
279
|
+
3. If requested by the Licensor, You must remove any of the
|
|
280
|
+
information required by Section 3(a)(1)(A) to the extent
|
|
281
|
+
reasonably practicable.
|
|
282
|
+
|
|
283
|
+
b. ShareAlike.
|
|
284
|
+
|
|
285
|
+
In addition to the conditions in Section 3(a), if You Share
|
|
286
|
+
Adapted Material You produce, the following conditions also apply.
|
|
287
|
+
|
|
288
|
+
1. The Adapter's License You apply must be a Creative Commons
|
|
289
|
+
license with the same License Elements, this version or
|
|
290
|
+
later, or a BY-NC-SA Compatible License.
|
|
291
|
+
|
|
292
|
+
2. You must include the text of, or the URI or hyperlink to, the
|
|
293
|
+
Adapter's License You apply. You may satisfy this condition
|
|
294
|
+
in any reasonable manner based on the medium, means, and
|
|
295
|
+
context in which You Share Adapted Material.
|
|
296
|
+
|
|
297
|
+
3. You may not offer or impose any additional or different terms
|
|
298
|
+
or conditions on, or apply any Effective Technological
|
|
299
|
+
Measures to, Adapted Material that restrict exercise of the
|
|
300
|
+
rights granted under the Adapter's License You apply.
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
Section 4 -- Sui Generis Database Rights.
|
|
304
|
+
|
|
305
|
+
Where the Licensed Rights include Sui Generis Database Rights that
|
|
306
|
+
apply to Your use of the Licensed Material:
|
|
307
|
+
|
|
308
|
+
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
|
309
|
+
to extract, reuse, reproduce, and Share all or a substantial
|
|
310
|
+
portion of the contents of the database for NonCommercial purposes
|
|
311
|
+
only;
|
|
312
|
+
|
|
313
|
+
b. if You include all or a substantial portion of the database
|
|
314
|
+
contents in a database in which You have Sui Generis Database
|
|
315
|
+
Rights, then the database in which You have Sui Generis Database
|
|
316
|
+
Rights (but not its individual contents) is Adapted Material,
|
|
317
|
+
including for purposes of Section 3(b); and
|
|
318
|
+
|
|
319
|
+
c. You must comply with the conditions in Section 3(a) if You Share
|
|
320
|
+
all or a substantial portion of the contents of the database.
|
|
321
|
+
|
|
322
|
+
For the avoidance of doubt, this Section 4 supplements and does not
|
|
323
|
+
replace Your obligations under this Public License where the Licensed
|
|
324
|
+
Rights include other Copyright and Similar Rights.
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
|
328
|
+
|
|
329
|
+
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
|
330
|
+
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
|
331
|
+
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
|
332
|
+
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
|
333
|
+
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
|
334
|
+
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
335
|
+
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
|
336
|
+
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
|
337
|
+
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
|
338
|
+
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
|
339
|
+
|
|
340
|
+
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
|
341
|
+
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
|
342
|
+
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
|
343
|
+
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
|
344
|
+
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
|
345
|
+
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
|
346
|
+
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
|
347
|
+
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
|
348
|
+
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
|
349
|
+
|
|
350
|
+
c. The disclaimer of warranties and limitation of liability provided
|
|
351
|
+
above shall be interpreted in a manner that, to the extent
|
|
352
|
+
possible, most closely approximates an absolute disclaimer and
|
|
353
|
+
waiver of all liability.
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
Section 6 -- Term and Termination.
|
|
357
|
+
|
|
358
|
+
a. This Public License applies for the term of the Copyright and
|
|
359
|
+
Similar Rights licensed here. However, if You fail to comply with
|
|
360
|
+
this Public License, then Your rights under this Public License
|
|
361
|
+
terminate automatically.
|
|
362
|
+
|
|
363
|
+
b. Where Your right to use the Licensed Material has terminated under
|
|
364
|
+
Section 6(a), it reinstates:
|
|
365
|
+
|
|
366
|
+
1. automatically as of the date the violation is cured, provided
|
|
367
|
+
it is cured within 30 days of Your discovery of the
|
|
368
|
+
violation; or
|
|
369
|
+
|
|
370
|
+
2. upon express reinstatement by the Licensor.
|
|
371
|
+
|
|
372
|
+
For the avoidance of doubt, this Section 6(b) does not affect any
|
|
373
|
+
right the Licensor may have to seek remedies for Your violations
|
|
374
|
+
of this Public License.
|
|
375
|
+
|
|
376
|
+
c. For the avoidance of doubt, the Licensor may also offer the
|
|
377
|
+
Licensed Material under separate terms or conditions or stop
|
|
378
|
+
distributing the Licensed Material at any time; however, doing so
|
|
379
|
+
will not terminate this Public License.
|
|
380
|
+
|
|
381
|
+
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
|
382
|
+
License.
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
Section 7 -- Other Terms and Conditions.
|
|
386
|
+
|
|
387
|
+
a. The Licensor shall not be bound by any additional or different
|
|
388
|
+
terms or conditions communicated by You unless expressly agreed.
|
|
389
|
+
|
|
390
|
+
b. Any arrangements, understandings, or agreements regarding the
|
|
391
|
+
Licensed Material not stated herein are separate from and
|
|
392
|
+
independent of the terms and conditions of this Public License.
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
Section 8 -- Interpretation.
|
|
396
|
+
|
|
397
|
+
a. For the avoidance of doubt, this Public License does not, and
|
|
398
|
+
shall not be interpreted to, reduce, limit, restrict, or impose
|
|
399
|
+
conditions on any use of the Licensed Material that could lawfully
|
|
400
|
+
be made without permission under this Public License.
|
|
401
|
+
|
|
402
|
+
b. To the extent possible, if any provision of this Public License is
|
|
403
|
+
deemed unenforceable, it shall be automatically reformed to the
|
|
404
|
+
minimum extent necessary to make it enforceable. If the provision
|
|
405
|
+
cannot be reformed, it shall be severed from this Public License
|
|
406
|
+
without affecting the enforceability of the remaining terms and
|
|
407
|
+
conditions.
|
|
408
|
+
|
|
409
|
+
c. No term or condition of this Public License will be waived and no
|
|
410
|
+
failure to comply consented to unless expressly agreed to by the
|
|
411
|
+
Licensor.
|
|
412
|
+
|
|
413
|
+
d. Nothing in this Public License constitutes or may be interpreted
|
|
414
|
+
as a limitation upon, or waiver of, any privileges and immunities
|
|
415
|
+
that apply to the Licensor or You, including from the legal
|
|
416
|
+
processes of any jurisdiction or authority.
|
|
417
|
+
|
|
418
|
+
=======================================================================
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Release packaging is controlled by setuptools/setup.py and keeps Python as
|
|
2
|
+
# the CLI/API/package wrapper around the native C++ extension.
|
|
3
|
+
include README.md
|
|
4
|
+
include CITATION.cff
|
|
5
|
+
include pyproject.toml
|
|
6
|
+
include setup.py
|
|
7
|
+
include setup_cpp.py
|
|
8
|
+
recursive-include configs *.yaml
|
|
9
|
+
recursive-include configs *.md
|
|
10
|
+
recursive-include cpp *.md
|
|
11
|
+
recursive-include scripts *.md
|
|
12
|
+
recursive-include smart/configs *.yaml
|
|
13
|
+
recursive-include cmake *.cmake
|
|
14
|
+
recursive-include cpp *.cpp *.hpp
|
|
15
|
+
recursive-include docs *.md *.png
|
|
16
|
+
recursive-include scripts *.py
|
|
17
|
+
recursive-include smart/legacy/renderer *.blend *.txt
|
|
18
|
+
recursive-include smart/pymanifold_runtime .gitkeep
|
|
19
|
+
recursive-include smart/vendor/manifold *
|
|
20
|
+
prune smart/vendor/manifold/.github
|
|
21
|
+
prune smart/vendor/manifold/build
|
|
22
|
+
prune smart/vendor/manifold/docs
|
|
23
|
+
prune smart/vendor/manifold/samples
|
|
24
|
+
prune smart/vendor/manifold/test
|
|
25
|
+
prune smart/vendor/manifold/bindings/wasm
|
|
26
|
+
prune smart/vendor/manifold/bindings/python/third_party/pybind11/.github
|
|
27
|
+
prune smart/vendor/manifold/bindings/python/third_party/pybind11/docs
|
|
28
|
+
prune smart/vendor/manifold/bindings/python/third_party/pybind11/tests
|
|
29
|
+
prune smart/vendor/manifold/src/third_party/glm/doc
|
|
30
|
+
prune smart/vendor/manifold/src/third_party/glm/test
|
|
31
|
+
prune smart/vendor/manifold/src/third_party/glm/util
|
|
32
|
+
prune smart/vendor/manifold/src/third_party/thrust/.github
|
|
33
|
+
prune smart/vendor/manifold/src/third_party/thrust/ci
|
|
34
|
+
prune smart/vendor/manifold/src/third_party/thrust/doc
|
|
35
|
+
prune smart/vendor/manifold/src/third_party/thrust/examples
|
|
36
|
+
prune smart/vendor/manifold/src/third_party/thrust/internal
|
|
37
|
+
prune smart/vendor/manifold/src/third_party/thrust/testing
|
|
38
|
+
prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/.github
|
|
39
|
+
prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/examples
|
|
40
|
+
prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/experimental
|
|
41
|
+
prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/test
|
|
42
|
+
prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/tune
|
|
43
|
+
prune data
|
|
44
|
+
prune past_codes
|
|
45
|
+
prune runs
|
|
46
|
+
prune external
|
|
47
|
+
prune experiments
|
|
48
|
+
prune build
|
|
49
|
+
prune dist
|
|
50
|
+
global-exclude *.so *.pyd *.dylib
|
|
51
|
+
global-exclude __pycache__ *.py[cod] .DS_Store
|