polyscope 1.3.4__tar.gz → 2.1.0__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.
- polyscope-2.1.0/CMakeLists.txt +33 -0
- polyscope-2.1.0/PKG-INFO +103 -0
- polyscope-2.1.0/README.md +43 -0
- polyscope-2.1.0/deps/polyscope/.github/workflows/linux.yml +54 -0
- polyscope-2.1.0/deps/polyscope/.gitignore +47 -0
- polyscope-2.1.0/deps/polyscope/deps/CMakeLists.txt +23 -0
- polyscope-2.1.0/deps/polyscope/deps/MarchingCubeCpp/README.md +51 -0
- polyscope-2.1.0/deps/polyscope/deps/MarchingCubeCpp/include/MarchingCube/MC.h +319 -0
- polyscope-2.1.0/deps/polyscope/deps/glad/src/CMakeLists.txt +18 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/.github/workflows/build.yml +117 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/CMakeLists.txt +388 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/CONTRIBUTORS.md +268 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/README.md +170 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/deps/glad/vk_platform.h +84 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/deps/glad/vulkan.h +5508 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/deps/glad_vulkan.c +733 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/deps/stb_image_write.h +1724 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/CONTRIBUTING.md +391 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/Doxyfile.in +2737 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/build.dox +348 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/compat.dox +289 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/compile.dox +368 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/context.dox +347 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/input.dox +968 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/intro.dox +479 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/monitor.dox +268 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/moving.dox +513 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/news.dox +902 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/quick.dox +361 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/vulkan.dox +242 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/docs/window.dox +1413 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/include/GLFW/glfw3.h +5932 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/include/GLFW/glfw3native.h +634 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/CMakeLists.txt +196 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_init.m +633 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_joystick.m +493 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_monitor.m +627 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_platform.h +220 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_window.m +1939 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/context.c +767 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/egl_context.c +850 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/egl_context.h +217 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/glfw3.pc.in +13 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/glfw_config.h.in +58 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/glx_context.c +706 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/glx_context.h +178 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/init.c +426 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/input.c +1386 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/internal.h +789 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/linux_joystick.c +437 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/linux_joystick.h +64 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/monitor.c +542 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/nsgl_context.h +66 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/nsgl_context.m +375 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/null_window.c +335 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/osmesa_context.c +386 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/vulkan.c +334 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/wgl_context.c +787 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_init.c +638 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_joystick.c +762 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_monitor.c +548 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_platform.h +460 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_window.c +2418 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/window.c +1101 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/wl_init.c +751 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/wl_monitor.c +273 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/wl_platform.h +530 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/wl_window.c +3057 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/x11_init.c +1274 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/x11_platform.h +450 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/x11_window.c +3235 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/xkb_unicode.c +942 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/src/xkb_unicode.h +30 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/tests/events.c +650 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/tests/gamma.c +185 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/tests/glfwinfo.c +971 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/tests/iconify.c +297 -0
- polyscope-2.1.0/deps/polyscope/deps/glfw/tests/triangle-vulkan.c +2139 -0
- polyscope-2.1.0/deps/polyscope/examples/demo-app/CMakeLists.txt +86 -0
- polyscope-2.1.0/deps/polyscope/examples/demo-app/demo_app.cpp +884 -0
- polyscope-2.1.0/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.h +8 -0
- polyscope-2.1.0/deps/polyscope/examples/demo-app/surface_mesh_io.cpp +148 -0
- polyscope-2.1.0/deps/polyscope/examples/demo-app/surface_mesh_io.h +18 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/affine_remapper.h +72 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/affine_remapper.ipp +190 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/camera_parameters.h +129 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/camera_parameters.ipp +15 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/camera_view.h +144 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/camera_view.ipp +25 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/color_image_quantity.h +52 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/color_management.h +25 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/color_quantity.h +51 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/color_quantity.ipp +30 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/color_render_image_quantity.h +70 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/colors.h +5 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/combining_hash_functions.h +83 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network.h +239 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network.ipp +271 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network_color_quantity.h +66 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network_quantity.h +25 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network_scalar_quantity.h +69 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network_vector_quantity.h +58 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/depth_render_image_quantity.h +63 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/disjoint_sets.h +56 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/file_helpers.h +11 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/floating_quantities.h +11 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/floating_quantity.h +22 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/floating_quantity_structure.h +112 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/floating_quantity_structure.ipp +74 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/fullscreen_artist.h +37 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/group.h +72 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/histogram.h +56 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/image_quantity.h +16 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/image_quantity_base.h +72 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/imgui_config.h +16 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/implicit_helpers.h +191 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/implicit_helpers.ipp +556 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/internal.h +29 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/messages.h +30 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/options.h +130 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/parameterization_quantity.h +96 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/parameterization_quantity.ipp +324 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/persistent_value.h +162 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/pick.h +51 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/pick.ipp +52 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud.h +197 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud.ipp +116 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_color_quantity.h +35 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_parameterization_quantity.h +35 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_quantity.h +24 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_scalar_quantity.h +36 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_vector_quantity.h +24 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/polyscope.h +181 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/quantity.h +84 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/quantity.ipp +72 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/ragged_nested_array.h +8 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/raw_color_alpha_render_image_quantity.h +68 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/raw_color_render_image_quantity.h +65 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/color_maps.h +87 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/colormap_defs.h +27 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/engine.h +682 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/engine.ipp +12 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/ground_plane.h +70 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/managed_buffer.h +298 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/managed_buffer.ipp +76 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/material_defs.h +43 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/materials.h +57 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +425 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/gl_engine.h +483 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/gl_shaders.h +7 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/common.h +17 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +28 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/gizmo_shaders.h +22 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/grid_shaders.h +29 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/ground_plane_shaders.h +21 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +20 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/lighting_shaders.h +29 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/ribbon_shaders.h +21 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +49 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/sphere_shaders.h +31 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +41 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/texture_draw_shaders.h +55 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/vector_shaders.h +23 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/volume_mesh_shaders.h +24 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/shader_builder.h +15 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render/templated_buffers.h +65 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/render_image_quantity_base.h +82 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/scalar_image_quantity.h +47 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/scalar_quantity.h +85 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/scalar_quantity.ipp +295 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/scalar_render_image_quantity.h +64 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/scaled_value.h +77 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/screenshot.h +23 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/simple_triangle_mesh.h +134 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/simple_triangle_mesh.ipp +54 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/slice_plane.h +117 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/standardize_data_array.h +1194 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/structure.h +292 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/structure.ipp +423 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/surface_color_quantity.h +78 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/surface_mesh.h +445 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/surface_mesh.ipp +429 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/surface_mesh_quantity.h +29 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +98 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/surface_scalar_quantity.h +129 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/surface_vector_quantity.h +116 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/transformation_gizmo.h +91 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/types.h +61 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/utilities.h +179 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/vector_quantity.h +170 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/vector_quantity.ipp +327 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/view.h +156 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_grid.h +208 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_grid.ipp +189 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_grid_quantity.h +27 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_grid_scalar_quantity.h +113 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh.h +297 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh.ipp +172 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh_color_quantity.h +68 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh_quantity.h +30 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh_scalar_quantity.h +90 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh_vector_quantity.h +62 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/weak_handle.h +100 -0
- polyscope-2.1.0/deps/polyscope/include/polyscope/widget.h +26 -0
- polyscope-2.1.0/deps/polyscope/misc/format_all_macOS.sh +9 -0
- polyscope-2.1.0/deps/polyscope/src/CMakeLists.txt +344 -0
- polyscope-2.1.0/deps/polyscope/src/camera_parameters.cpp +191 -0
- polyscope-2.1.0/deps/polyscope/src/camera_view.cpp +467 -0
- polyscope-2.1.0/deps/polyscope/src/color_image_quantity.cpp +179 -0
- polyscope-2.1.0/deps/polyscope/src/color_management.cpp +84 -0
- polyscope-2.1.0/deps/polyscope/src/color_render_image_quantity.cpp +102 -0
- polyscope-2.1.0/deps/polyscope/src/curve_network.cpp +579 -0
- polyscope-2.1.0/deps/polyscope/src/curve_network_color_quantity.cpp +194 -0
- polyscope-2.1.0/deps/polyscope/src/curve_network_scalar_quantity.cpp +213 -0
- polyscope-2.1.0/deps/polyscope/src/curve_network_vector_quantity.cpp +103 -0
- polyscope-2.1.0/deps/polyscope/src/depth_render_image_quantity.cpp +112 -0
- polyscope-2.1.0/deps/polyscope/src/disjoint_sets.cpp +89 -0
- polyscope-2.1.0/deps/polyscope/src/file_helpers.cpp +53 -0
- polyscope-2.1.0/deps/polyscope/src/floating_quantity.cpp +32 -0
- polyscope-2.1.0/deps/polyscope/src/floating_quantity_structure.cpp +119 -0
- polyscope-2.1.0/deps/polyscope/src/fullscreen_artist.cpp +34 -0
- polyscope-2.1.0/deps/polyscope/src/group.cpp +319 -0
- polyscope-2.1.0/deps/polyscope/src/histogram.cpp +262 -0
- polyscope-2.1.0/deps/polyscope/src/image_quantity_base.cpp +133 -0
- polyscope-2.1.0/deps/polyscope/src/imgui_config.cpp +104 -0
- polyscope-2.1.0/deps/polyscope/src/internal.cpp +16 -0
- polyscope-2.1.0/deps/polyscope/src/marching_cubes.cpp +2 -0
- polyscope-2.1.0/deps/polyscope/src/messages.cpp +284 -0
- polyscope-2.1.0/deps/polyscope/src/options.cpp +65 -0
- polyscope-2.1.0/deps/polyscope/src/persistent_value.cpp +25 -0
- polyscope-2.1.0/deps/polyscope/src/pick.cpp +163 -0
- polyscope-2.1.0/deps/polyscope/src/point_cloud.cpp +464 -0
- polyscope-2.1.0/deps/polyscope/src/point_cloud_color_quantity.cpp +75 -0
- polyscope-2.1.0/deps/polyscope/src/point_cloud_parameterization_quantity.cpp +97 -0
- polyscope-2.1.0/deps/polyscope/src/point_cloud_scalar_quantity.cpp +92 -0
- polyscope-2.1.0/deps/polyscope/src/point_cloud_vector_quantity.cpp +51 -0
- polyscope-2.1.0/deps/polyscope/src/polyscope.cpp +1277 -0
- polyscope-2.1.0/deps/polyscope/src/quantity.cpp +40 -0
- polyscope-2.1.0/deps/polyscope/src/raw_color_alpha_render_image_quantity.cpp +106 -0
- polyscope-2.1.0/deps/polyscope/src/raw_color_render_image_quantity.cpp +91 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_candy.cpp +44815 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_ceramic.cpp +2093 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_clay.cpp +41502 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_flat.cpp +217 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_jade.cpp +1763 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_mud.cpp +1820 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_normal.cpp +2957 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_wax.cpp +46713 -0
- polyscope-2.1.0/deps/polyscope/src/render/bindata/concrete_seamless.cpp +5015 -0
- polyscope-2.1.0/deps/polyscope/src/render/color_maps.cpp +78 -0
- polyscope-2.1.0/deps/polyscope/src/render/engine.cpp +1168 -0
- polyscope-2.1.0/deps/polyscope/src/render/ground_plane.cpp +428 -0
- polyscope-2.1.0/deps/polyscope/src/render/initialize_backend.cpp +58 -0
- polyscope-2.1.0/deps/polyscope/src/render/managed_buffer.cpp +614 -0
- polyscope-2.1.0/deps/polyscope/src/render/materials.cpp +47 -0
- polyscope-2.1.0/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +2059 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/gl_engine.cpp +2826 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/common.cpp +449 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +484 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/gizmo_shaders.cpp +285 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/grid_shaders.cpp +466 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/ground_plane_shaders.cpp +328 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +92 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +309 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/ribbon_shaders.cpp +209 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/rules.cpp +470 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/sphere_shaders.cpp +527 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +651 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/texture_draw_shaders.cpp +795 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/vector_shaders.cpp +338 -0
- polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/volume_mesh_shaders.cpp +396 -0
- polyscope-2.1.0/deps/polyscope/src/render/shader_builder.cpp +179 -0
- polyscope-2.1.0/deps/polyscope/src/render/templated_buffers.cpp +380 -0
- polyscope-2.1.0/deps/polyscope/src/render_image_quantity_base.cpp +117 -0
- polyscope-2.1.0/deps/polyscope/src/scalar_image_quantity.cpp +173 -0
- polyscope-2.1.0/deps/polyscope/src/scalar_render_image_quantity.cpp +123 -0
- polyscope-2.1.0/deps/polyscope/src/screenshot.cpp +124 -0
- polyscope-2.1.0/deps/polyscope/src/simple_triangle_mesh.cpp +312 -0
- polyscope-2.1.0/deps/polyscope/src/slice_plane.cpp +447 -0
- polyscope-2.1.0/deps/polyscope/src/state.cpp +24 -0
- polyscope-2.1.0/deps/polyscope/src/structure.cpp +343 -0
- polyscope-2.1.0/deps/polyscope/src/surface_color_quantity.cpp +156 -0
- polyscope-2.1.0/deps/polyscope/src/surface_mesh.cpp +1718 -0
- polyscope-2.1.0/deps/polyscope/src/surface_parameterization_quantity.cpp +266 -0
- polyscope-2.1.0/deps/polyscope/src/surface_scalar_quantity.cpp +310 -0
- polyscope-2.1.0/deps/polyscope/src/surface_vector_quantity.cpp +284 -0
- polyscope-2.1.0/deps/polyscope/src/transformation_gizmo.cpp +629 -0
- polyscope-2.1.0/deps/polyscope/src/utilities.cpp +135 -0
- polyscope-2.1.0/deps/polyscope/src/view.cpp +1075 -0
- polyscope-2.1.0/deps/polyscope/src/volume_grid.cpp +557 -0
- polyscope-2.1.0/deps/polyscope/src/volume_grid_scalar_quantity.cpp +388 -0
- polyscope-2.1.0/deps/polyscope/src/volume_mesh.cpp +1075 -0
- polyscope-2.1.0/deps/polyscope/src/volume_mesh_color_quantity.cpp +195 -0
- polyscope-2.1.0/deps/polyscope/src/volume_mesh_scalar_quantity.cpp +362 -0
- polyscope-2.1.0/deps/polyscope/src/volume_mesh_vector_quantity.cpp +99 -0
- polyscope-2.1.0/deps/polyscope/src/weak_handle.cpp +18 -0
- polyscope-2.1.0/deps/polyscope/src/widget.cpp +17 -0
- polyscope-2.1.0/deps/polyscope/test/CMakeLists.txt +124 -0
- polyscope-2.1.0/deps/polyscope/test/include/polyscope_test.h +171 -0
- polyscope-2.1.0/deps/polyscope/test/src/array_adaptors_test.cpp +392 -0
- polyscope-2.1.0/deps/polyscope/test/src/basics_test.cpp +129 -0
- polyscope-2.1.0/deps/polyscope/test/src/camera_view_test.cpp +160 -0
- polyscope-2.1.0/deps/polyscope/test/src/combo_test.cpp +180 -0
- polyscope-2.1.0/deps/polyscope/test/src/curve_network_test.cpp +125 -0
- polyscope-2.1.0/deps/polyscope/test/src/floating_test.cpp +230 -0
- polyscope-2.1.0/deps/polyscope/test/src/group_test.cpp +263 -0
- polyscope-2.1.0/deps/polyscope/test/src/interop_and_serialization_test.cpp +35 -0
- polyscope-2.1.0/deps/polyscope/test/src/main_test.cpp +45 -0
- polyscope-2.1.0/deps/polyscope/test/src/misc_test.cpp +43 -0
- polyscope-2.1.0/deps/polyscope/test/src/point_cloud_test.cpp +183 -0
- polyscope-2.1.0/deps/polyscope/test/src/surface_mesh_test.cpp +540 -0
- polyscope-2.1.0/deps/polyscope/test/src/volume_grid_test.cpp +180 -0
- polyscope-2.1.0/deps/polyscope/test/src/volume_mesh_test.cpp +230 -0
- polyscope-2.1.0/setup.py +113 -0
- polyscope-2.1.0/src/cpp/camera_view.cpp +49 -0
- polyscope-2.1.0/src/cpp/core.cpp +530 -0
- polyscope-2.1.0/src/cpp/curve_network.cpp +96 -0
- polyscope-2.1.0/src/cpp/floating_quantities.cpp +87 -0
- polyscope-2.1.0/src/cpp/imgui.cpp +2229 -0
- polyscope-2.1.0/src/cpp/implicit_helpers.cpp +155 -0
- polyscope-2.1.0/src/cpp/managed_buffer.cpp +208 -0
- polyscope-2.1.0/src/cpp/point_cloud.cpp +82 -0
- polyscope-2.1.0/src/cpp/surface_mesh.cpp +186 -0
- polyscope-2.1.0/src/cpp/utils.h +248 -0
- polyscope-2.1.0/src/cpp/volume_grid.cpp +129 -0
- polyscope-2.1.0/src/cpp/volume_mesh.cpp +97 -0
- polyscope-2.1.0/src/polyscope/__init__.py +15 -0
- polyscope-2.1.0/src/polyscope/camera_view.py +104 -0
- polyscope-2.1.0/src/polyscope/common.py +220 -0
- polyscope-2.1.0/src/polyscope/core.py +797 -0
- polyscope-2.1.0/src/polyscope/curve_network.py +209 -0
- polyscope-2.1.0/src/polyscope/device_interop.py +431 -0
- polyscope-2.1.0/src/polyscope/floating_quantities.py +226 -0
- polyscope-2.1.0/src/polyscope/global_floating_quantity_structure.py +13 -0
- polyscope-2.1.0/src/polyscope/implicit_helpers.py +94 -0
- polyscope-2.1.0/src/polyscope/managed_buffer.py +144 -0
- polyscope-2.1.0/src/polyscope/point_cloud.py +171 -0
- polyscope-2.1.0/src/polyscope/structure.py +208 -0
- polyscope-2.1.0/src/polyscope/surface_mesh.py +409 -0
- polyscope-2.1.0/src/polyscope/volume_grid.py +216 -0
- polyscope-2.1.0/src/polyscope/volume_mesh.py +230 -0
- polyscope-2.1.0/src/polyscope.egg-info/PKG-INFO +103 -0
- polyscope-2.1.0/src/polyscope.egg-info/SOURCES.txt +1462 -0
- polyscope-2.1.0/src/polyscope_bindings/imgui.pyi +1242 -0
- polyscope-1.3.4/CMakeLists.txt +0 -27
- polyscope-1.3.4/PKG-INFO +0 -100
- polyscope-1.3.4/README.md +0 -43
- polyscope-1.3.4/deps/polyscope/.github/workflows/linux.yml +0 -54
- polyscope-1.3.4/deps/polyscope/.gitignore +0 -46
- polyscope-1.3.4/deps/polyscope/deps/CMakeLists.txt +0 -23
- polyscope-1.3.4/deps/polyscope/deps/glad/src/CMakeLists.txt +0 -18
- polyscope-1.3.4/deps/polyscope/deps/glfw/.github/workflows/build.yml +0 -116
- polyscope-1.3.4/deps/polyscope/deps/glfw/CMakeLists.txt +0 -386
- polyscope-1.3.4/deps/polyscope/deps/glfw/CONTRIBUTORS.md +0 -226
- polyscope-1.3.4/deps/polyscope/deps/glfw/README.md +0 -151
- polyscope-1.3.4/deps/polyscope/deps/glfw/deps/glad/vk_platform.h +0 -92
- polyscope-1.3.4/deps/polyscope/deps/glfw/deps/glad/vulkan.h +0 -3480
- polyscope-1.3.4/deps/polyscope/deps/glfw/deps/glad_vulkan.c +0 -593
- polyscope-1.3.4/deps/polyscope/deps/glfw/deps/stb_image_write.h +0 -1048
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/CONTRIBUTING.md +0 -391
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/Doxyfile.in +0 -1828
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/build.dox +0 -348
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/compat.dox +0 -285
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/compile.dox +0 -365
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/context.dox +0 -346
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/input.dox +0 -950
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/intro.dox +0 -454
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/monitor.dox +0 -268
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/moving.dox +0 -513
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/news.dox +0 -863
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/quick.dox +0 -365
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/vulkan.dox +0 -235
- polyscope-1.3.4/deps/polyscope/deps/glfw/docs/window.dox +0 -1412
- polyscope-1.3.4/deps/polyscope/deps/glfw/include/GLFW/glfw3.h +0 -5909
- polyscope-1.3.4/deps/polyscope/deps/glfw/include/GLFW/glfw3native.h +0 -594
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/CMakeLists.txt +0 -195
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_init.m +0 -623
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_joystick.m +0 -487
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_monitor.m +0 -631
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_platform.h +0 -209
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_window.m +0 -1848
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/context.c +0 -756
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/egl_context.c +0 -790
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/egl_context.h +0 -215
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/glfw3.pc.in +0 -13
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/glfw_config.h.in +0 -60
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/glx_context.c +0 -699
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/glx_context.h +0 -179
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/init.c +0 -326
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/input.c +0 -1367
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/internal.h +0 -780
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/linux_joystick.c +0 -433
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/linux_joystick.h +0 -63
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/monitor.c +0 -542
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/nsgl_context.h +0 -64
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/nsgl_context.m +0 -376
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/null_window.c +0 -332
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/osmesa_context.c +0 -384
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/vulkan.c +0 -332
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/wgl_context.c +0 -798
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_init.c +0 -623
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_joystick.c +0 -755
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_monitor.c +0 -548
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_platform.h +0 -452
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_window.c +0 -2295
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/window.c +0 -1104
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/wl_init.c +0 -1327
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/wl_monitor.c +0 -231
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/wl_platform.h +0 -355
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/wl_window.c +0 -1903
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/x11_init.c +0 -1211
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/x11_platform.h +0 -447
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/x11_window.c +0 -3194
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/xkb_unicode.c +0 -942
- polyscope-1.3.4/deps/polyscope/deps/glfw/src/xkb_unicode.h +0 -28
- polyscope-1.3.4/deps/polyscope/deps/glfw/tests/events.c +0 -650
- polyscope-1.3.4/deps/polyscope/deps/glfw/tests/gamma.c +0 -179
- polyscope-1.3.4/deps/polyscope/deps/glfw/tests/glfwinfo.c +0 -920
- polyscope-1.3.4/deps/polyscope/deps/glfw/tests/iconify.c +0 -297
- polyscope-1.3.4/deps/polyscope/deps/glfw/tests/triangle-vulkan.c +0 -2133
- polyscope-1.3.4/deps/polyscope/examples/demo-app/CMakeLists.txt +0 -83
- polyscope-1.3.4/deps/polyscope/examples/demo-app/demo_app.cpp +0 -606
- polyscope-1.3.4/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.h +0 -7
- polyscope-1.3.4/deps/polyscope/include/polyscope/affine_remapper.h +0 -77
- polyscope-1.3.4/deps/polyscope/include/polyscope/affine_remapper.ipp +0 -189
- polyscope-1.3.4/deps/polyscope/include/polyscope/camera_parameters.h +0 -36
- polyscope-1.3.4/deps/polyscope/include/polyscope/color_management.h +0 -24
- polyscope-1.3.4/deps/polyscope/include/polyscope/colors.h +0 -7
- polyscope-1.3.4/deps/polyscope/include/polyscope/combining_hash_functions.h +0 -82
- polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network.h +0 -202
- polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network.ipp +0 -218
- polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network_color_quantity.h +0 -64
- polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network_quantity.h +0 -24
- polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network_scalar_quantity.h +0 -62
- polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network_vector_quantity.h +0 -81
- polyscope-1.3.4/deps/polyscope/include/polyscope/disjoint_sets.h +0 -55
- polyscope-1.3.4/deps/polyscope/include/polyscope/file_helpers.h +0 -10
- polyscope-1.3.4/deps/polyscope/include/polyscope/histogram.h +0 -67
- polyscope-1.3.4/deps/polyscope/include/polyscope/image_scalar_artist.h +0 -64
- polyscope-1.3.4/deps/polyscope/include/polyscope/imgui_config.h +0 -15
- polyscope-1.3.4/deps/polyscope/include/polyscope/internal.h +0 -16
- polyscope-1.3.4/deps/polyscope/include/polyscope/messages.h +0 -26
- polyscope-1.3.4/deps/polyscope/include/polyscope/options.h +0 -109
- polyscope-1.3.4/deps/polyscope/include/polyscope/persistent_value.h +0 -145
- polyscope-1.3.4/deps/polyscope/include/polyscope/pick.h +0 -50
- polyscope-1.3.4/deps/polyscope/include/polyscope/pick.ipp +0 -50
- polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud.h +0 -185
- polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud.ipp +0 -114
- polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_color_quantity.h +0 -33
- polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_parameterization_quantity.h +0 -75
- polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_quantity.h +0 -23
- polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_scalar_quantity.h +0 -37
- polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_vector_quantity.h +0 -55
- polyscope-1.3.4/deps/polyscope/include/polyscope/polyscope.h +0 -156
- polyscope-1.3.4/deps/polyscope/include/polyscope/quantity.h +0 -56
- polyscope-1.3.4/deps/polyscope/include/polyscope/quantity.ipp +0 -97
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/color_maps.h +0 -86
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/colormap_defs.h +0 -26
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/engine.h +0 -527
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/engine.ipp +0 -13
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/ground_plane.h +0 -69
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/material_defs.h +0 -42
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/materials.h +0 -52
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +0 -281
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/gl_engine.h +0 -338
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/gl_shaders.h +0 -5
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/common.h +0 -16
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +0 -25
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/gizmo_shaders.h +0 -20
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/ground_plane_shaders.h +0 -19
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +0 -18
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/lighting_shaders.h +0 -25
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/ribbon_shaders.h +0 -19
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +0 -39
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/sphere_shaders.h +0 -29
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +0 -29
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/texture_draw_shaders.h +0 -32
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/vector_shaders.h +0 -20
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/volume_mesh_shaders.h +0 -22
- polyscope-1.3.4/deps/polyscope/include/polyscope/render/shader_builder.h +0 -13
- polyscope-1.3.4/deps/polyscope/include/polyscope/ribbon_artist.h +0 -52
- polyscope-1.3.4/deps/polyscope/include/polyscope/scalar_quantity.h +0 -70
- polyscope-1.3.4/deps/polyscope/include/polyscope/scalar_quantity.ipp +0 -204
- polyscope-1.3.4/deps/polyscope/include/polyscope/scaled_value.h +0 -69
- polyscope-1.3.4/deps/polyscope/include/polyscope/screenshot.h +0 -22
- polyscope-1.3.4/deps/polyscope/include/polyscope/slice_plane.h +0 -109
- polyscope-1.3.4/deps/polyscope/include/polyscope/standardize_data_array.h +0 -1039
- polyscope-1.3.4/deps/polyscope/include/polyscope/structure.h +0 -175
- polyscope-1.3.4/deps/polyscope/include/polyscope/structure.ipp +0 -135
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_color_quantity.h +0 -66
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_count_quantity.h +0 -96
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_distance_quantity.h +0 -61
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_graph_quantity.h +0 -43
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_input_curve_quantity.h +0 -44
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_mesh.h +0 -404
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_mesh.ipp +0 -484
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_mesh_io.h +0 -17
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_mesh_quantity.h +0 -27
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_parameterization_enums.h +0 -9
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +0 -124
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_scalar_quantity.h +0 -100
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_selection_quantity.h +0 -127
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_subset_quantity.h +0 -42
- polyscope-1.3.4/deps/polyscope/include/polyscope/surface_vector_quantity.h +0 -168
- polyscope-1.3.4/deps/polyscope/include/polyscope/trace_vector_field.h +0 -21
- polyscope-1.3.4/deps/polyscope/include/polyscope/transformation_gizmo.h +0 -88
- polyscope-1.3.4/deps/polyscope/include/polyscope/types.h +0 -22
- polyscope-1.3.4/deps/polyscope/include/polyscope/utilities.h +0 -155
- polyscope-1.3.4/deps/polyscope/include/polyscope/vector_artist.h +0 -68
- polyscope-1.3.4/deps/polyscope/include/polyscope/view.h +0 -120
- polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh.h +0 -265
- polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh.ipp +0 -170
- polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh_color_quantity.h +0 -71
- polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh_quantity.h +0 -30
- polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh_scalar_quantity.h +0 -87
- polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh_vector_quantity.h +0 -90
- polyscope-1.3.4/deps/polyscope/include/polyscope/widget.h +0 -22
- polyscope-1.3.4/deps/polyscope/misc/file2c/file2cpp +0 -0
- polyscope-1.3.4/deps/polyscope/misc/material_images/bindata_mat_wax.cpp +0 -4018
- polyscope-1.3.4/deps/polyscope/src/CMakeLists.txt +0 -297
- polyscope-1.3.4/deps/polyscope/src/camera_parameters.cpp +0 -52
- polyscope-1.3.4/deps/polyscope/src/color_management.cpp +0 -81
- polyscope-1.3.4/deps/polyscope/src/curve_network.cpp +0 -449
- polyscope-1.3.4/deps/polyscope/src/curve_network_color_quantity.cpp +0 -158
- polyscope-1.3.4/deps/polyscope/src/curve_network_scalar_quantity.cpp +0 -177
- polyscope-1.3.4/deps/polyscope/src/curve_network_vector_quantity.cpp +0 -140
- polyscope-1.3.4/deps/polyscope/src/disjoint_sets.cpp +0 -88
- polyscope-1.3.4/deps/polyscope/src/file_helpers.cpp +0 -52
- polyscope-1.3.4/deps/polyscope/src/histogram.cpp +0 -313
- polyscope-1.3.4/deps/polyscope/src/image_scalar_artist.cpp +0 -148
- polyscope-1.3.4/deps/polyscope/src/imgui_config.cpp +0 -103
- polyscope-1.3.4/deps/polyscope/src/internal.cpp +0 -10
- polyscope-1.3.4/deps/polyscope/src/messages.cpp +0 -277
- polyscope-1.3.4/deps/polyscope/src/options.cpp +0 -59
- polyscope-1.3.4/deps/polyscope/src/persistent_value.cpp +0 -22
- polyscope-1.3.4/deps/polyscope/src/pick.cpp +0 -163
- polyscope-1.3.4/deps/polyscope/src/point_cloud.cpp +0 -456
- polyscope-1.3.4/deps/polyscope/src/point_cloud_color_quantity.cpp +0 -72
- polyscope-1.3.4/deps/polyscope/src/point_cloud_parameterization_quantity.cpp +0 -270
- polyscope-1.3.4/deps/polyscope/src/point_cloud_scalar_quantity.cpp +0 -87
- polyscope-1.3.4/deps/polyscope/src/point_cloud_vector_quantity.cpp +0 -80
- polyscope-1.3.4/deps/polyscope/src/polyscope.cpp +0 -1102
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_candy.cpp +0 -44815
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_ceramic.cpp +0 -2093
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_clay.cpp +0 -41502
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_flat.cpp +0 -217
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_jade.cpp +0 -1763
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_mat_wax.cpp +0 -4025
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_mud.cpp +0 -1820
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_normal.cpp +0 -2957
- polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_wax.cpp +0 -46713
- polyscope-1.3.4/deps/polyscope/src/render/bindata/concrete_seamless.cpp +0 -5015
- polyscope-1.3.4/deps/polyscope/src/render/color_maps.cpp +0 -77
- polyscope-1.3.4/deps/polyscope/src/render/engine.cpp +0 -995
- polyscope-1.3.4/deps/polyscope/src/render/ground_plane.cpp +0 -429
- polyscope-1.3.4/deps/polyscope/src/render/initialize_backend.cpp +0 -51
- polyscope-1.3.4/deps/polyscope/src/render/materials.cpp +0 -47
- polyscope-1.3.4/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +0 -1495
- polyscope-1.3.4/deps/polyscope/src/render/opengl/gl_engine.cpp +0 -2183
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/common.cpp +0 -341
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +0 -429
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/gizmo_shaders.cpp +0 -283
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/ground_plane_shaders.cpp +0 -318
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +0 -91
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +0 -251
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/ribbon_shaders.cpp +0 -207
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/rules.cpp +0 -340
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/sphere_shaders.cpp +0 -523
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +0 -444
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/texture_draw_shaders.cpp +0 -406
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/vector_shaders.cpp +0 -280
- polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/volume_mesh_shaders.cpp +0 -414
- polyscope-1.3.4/deps/polyscope/src/render/shader_builder.cpp +0 -175
- polyscope-1.3.4/deps/polyscope/src/ribbon_artist.cpp +0 -191
- polyscope-1.3.4/deps/polyscope/src/screenshot.cpp +0 -123
- polyscope-1.3.4/deps/polyscope/src/slice_plane.cpp +0 -442
- polyscope-1.3.4/deps/polyscope/src/state.cpp +0 -22
- polyscope-1.3.4/deps/polyscope/src/structure.cpp +0 -335
- polyscope-1.3.4/deps/polyscope/src/surface_color_quantity.cpp +0 -140
- polyscope-1.3.4/deps/polyscope/src/surface_count_quantity.cpp +0 -289
- polyscope-1.3.4/deps/polyscope/src/surface_distance_quantity.cpp +0 -190
- polyscope-1.3.4/deps/polyscope/src/surface_graph_quantity.cpp +0 -134
- polyscope-1.3.4/deps/polyscope/src/surface_input_curve_quantity.cpp_ +0 -270
- polyscope-1.3.4/deps/polyscope/src/surface_mesh.cpp +0 -1405
- polyscope-1.3.4/deps/polyscope/src/surface_mesh_io.cpp +0 -147
- polyscope-1.3.4/deps/polyscope/src/surface_parameterization_quantity.cpp +0 -359
- polyscope-1.3.4/deps/polyscope/src/surface_scalar_quantity.cpp +0 -321
- polyscope-1.3.4/deps/polyscope/src/surface_selection_quantity.cpp +0 -519
- polyscope-1.3.4/deps/polyscope/src/surface_subset_quantity.cpp +0 -93
- polyscope-1.3.4/deps/polyscope/src/surface_vector_quantity.cpp +0 -520
- polyscope-1.3.4/deps/polyscope/src/trace_vector_field.cpp +0 -419
- polyscope-1.3.4/deps/polyscope/src/transformation_gizmo.cpp +0 -609
- polyscope-1.3.4/deps/polyscope/src/utilities.cpp +0 -119
- polyscope-1.3.4/deps/polyscope/src/vector_artist.cpp +0 -137
- polyscope-1.3.4/deps/polyscope/src/view.cpp +0 -807
- polyscope-1.3.4/deps/polyscope/src/volume_mesh.cpp +0 -1074
- polyscope-1.3.4/deps/polyscope/src/volume_mesh_color_quantity.cpp +0 -230
- polyscope-1.3.4/deps/polyscope/src/volume_mesh_scalar_quantity.cpp +0 -380
- polyscope-1.3.4/deps/polyscope/src/volume_mesh_vector_quantity.cpp +0 -126
- polyscope-1.3.4/deps/polyscope/src/widget.cpp +0 -20
- polyscope-1.3.4/deps/polyscope/test/CMakeLists.txt +0 -112
- polyscope-1.3.4/deps/polyscope/test/include/polyscope_test.h +0 -7
- polyscope-1.3.4/deps/polyscope/test/src/array_adaptors_test.cpp +0 -357
- polyscope-1.3.4/deps/polyscope/test/src/basics_test.cpp +0 -1136
- polyscope-1.3.4/deps/polyscope/test/src/main_test.cpp +0 -43
- polyscope-1.3.4/setup.py +0 -113
- polyscope-1.3.4/src/cpp/core.cpp +0 -311
- polyscope-1.3.4/src/cpp/curve_network.cpp +0 -103
- polyscope-1.3.4/src/cpp/imgui.cpp +0 -1886
- polyscope-1.3.4/src/cpp/point_cloud.cpp +0 -89
- polyscope-1.3.4/src/cpp/surface_mesh.cpp +0 -179
- polyscope-1.3.4/src/cpp/utils.h +0 -118
- polyscope-1.3.4/src/cpp/volume_mesh.cpp +0 -103
- polyscope-1.3.4/src/polyscope/__init__.py +0 -5
- polyscope-1.3.4/src/polyscope/core.py +0 -437
- polyscope-1.3.4/src/polyscope/curve_network.py +0 -267
- polyscope-1.3.4/src/polyscope/point_cloud.py +0 -231
- polyscope-1.3.4/src/polyscope/surface_mesh.py +0 -487
- polyscope-1.3.4/src/polyscope/volume_mesh.py +0 -285
- polyscope-1.3.4/src/polyscope.egg-info/PKG-INFO +0 -100
- polyscope-1.3.4/src/polyscope.egg-info/SOURCES.txt +0 -1396
- polyscope-1.3.4/src/polyscope_bindings/imgui.pyi +0 -1217
- {polyscope-1.3.4 → polyscope-2.1.0}/LICENSE +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/MANIFEST.in +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.BSD +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.GPL +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.LGPL +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.MINPACK +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.MPL2 +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.README +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Cholesky +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/CholmodSupport +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Core +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Dense +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Eigen +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Eigenvalues +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Geometry +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Householder +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/IterativeLinearSolvers +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Jacobi +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/KLUSupport +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/LU +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/MetisSupport +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/OrderingMethods +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/PaStiXSupport +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/PardisoSupport +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/QR +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/QtAlignedMalloc +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SPQRSupport +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SVD +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Sparse +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SparseCholesky +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SparseCore +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SparseLU +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SparseQR +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/StdDeque +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/StdList +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/StdVector +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SuperLUSupport +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/UmfPackSupport +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Cholesky/LDLT.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Cholesky/LLT.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ArithmeticSequence.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Array.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ArrayBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ArrayWrapper.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Assign.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/AssignEvaluator.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Assign_MKL.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/BandMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Block.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/BooleanRedux.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CommaInitializer.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ConditionEstimator.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CoreEvaluators.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CoreIterators.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseBinaryOp.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseNullaryOp.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseTernaryOp.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseUnaryOp.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseUnaryView.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DenseBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DenseCoeffsBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DenseStorage.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Diagonal.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DiagonalMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DiagonalProduct.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Dot.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/EigenBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ForceAlignedAccess.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Fuzzy.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/GeneralProduct.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/GenericPacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/GlobalFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/IO.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/IndexedView.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Inverse.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Map.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/MapBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/MathFunctionsImpl.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Matrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/MatrixBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/NestByValue.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/NoAlias.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/NumTraits.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/PermutationMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/PlainObjectBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Product.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ProductEvaluators.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Random.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Redux.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Ref.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Replicate.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Reshaped.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ReturnByValue.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Reverse.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Select.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/SelfAdjointView.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Solve.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/SolveTriangular.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/SolverBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/StableNorm.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/StlIterators.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Stride.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Swap.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Transpose.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Transpositions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/TriangularMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/VectorBlock.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/VectorwiseOp.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Visitor.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX/Complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/Half.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/Settings.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/MSA/Complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/NEON/Complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SSE/Complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/StlFunctors.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/Parallelizer.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/BlasUtil.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/Constants.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/IntegralConstant.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/MKL_support.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/Macros.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/Memory.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/Meta.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/NonMPL2.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/ReshapedHelper.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/StaticAssert.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/SymbolicIndex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/XprHelper.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/RealQZ.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/AlignedBox.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/AngleAxis.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/EulerAngles.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Homogeneous.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Hyperplane.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/OrthoMethods.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/ParametrizedLine.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Quaternion.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Rotation2D.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/RotationBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Scaling.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Transform.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Translation.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Umeyama.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Householder/BlockHouseholder.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Householder/Householder.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Householder/HouseholderSequence.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Jacobi/Jacobi.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/KLUSupport/KLUSupport.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/Determinant.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/FullPivLU.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/InverseImpl.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/PartialPivLU.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/arch/Inverse_SSE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/MetisSupport/MetisSupport.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/OrderingMethods/Amd.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/OrderingMethods/Ordering.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/HouseholderQR.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/BDCSVD.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/JacobiSVD.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/SVDBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/AmbiVector.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/CompressedStorage.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseAssign.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseBlock.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseColEtree.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseDot.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseMap.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparsePermutation.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseProduct.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseRedux.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseRef.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseTranspose.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseUtil.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseVector.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseView.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/TriangularSolver.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseQR/SparseQR.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/StlSupport/StdDeque.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/StlSupport/StdList.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/StlSupport/StdVector.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/StlSupport/details.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/Image.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/Kernel.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/RealSvd2x2.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/blas.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/lapack.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/lapacke.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/lapacke_mangling.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/BlockMethods.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/IndexedViewMethods.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/ReshapedMethods.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.clang-format +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.git +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.github/workflows/macos.yml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.github/workflows/windows.yml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.gitmodules +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/LICENSE +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/args/LICENSE +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/args/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/args/args/args.hxx +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/LICENSE +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/include/KHR/khrplatform.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/include/glad/glad.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/src/glad.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.appveyor.yml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.git +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.gitattributes +0 -0
- {polyscope-1.3.4/deps/polyscope/deps/glfw/docs → polyscope-2.1.0/deps/polyscope/deps/glfw/.github}/CODEOWNERS +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.gitignore +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.mailmap +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/GenerateMappings.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/MacOSXBundleInfo.plist.in +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32-clang.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/modules/FindEpollShim.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/modules/FindOSMesa.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/modules/FindWaylandProtocols.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/modules/FindXKBCommon.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32-clang.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/LICENSE.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/cmake_uninstall.cmake.in +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/getopt.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/getopt.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/glad/gl.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/glad/khrplatform.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/glad_gl.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/linmath.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/mingw/_mingw_dxhelper.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/mingw/dinput.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/mingw/xinput.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/nuklear.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/nuklear_glfw_gl2.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/tinycthread.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/tinycthread.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/vs2008/stdint.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/DoxygenLayout.xml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/SUPPORT.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/extra.css +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/extra.css.map +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/extra.scss +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/footer.html +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/header.html +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/internal.dox +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/main.dox +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/spaces.svg +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/boing.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/gears.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/glfw.icns +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/glfw.ico +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/glfw.rc +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/heightmap.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/offscreen.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/particles.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/sharing.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/simple.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/splitview.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/wave.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/cocoa_joystick.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/cocoa_time.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/glfw3Config.cmake.in +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/mappings.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/mappings.h.in +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_init.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_joystick.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_joystick.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_monitor.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_platform.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/osmesa_context.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/posix_thread.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/posix_thread.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/posix_time.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/posix_time.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/wgl_context.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/win32_joystick.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/win32_thread.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/win32_time.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/x11_monitor.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/clipboard.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/cursor.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/empty.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/icon.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/inputlag.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/joysticks.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/monitors.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/msaa.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/opacity.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/reopen.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/tearing.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/threads.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/timeout.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/title.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/windows.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/copying.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/common.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_features.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_fixes.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_noise.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_swizzle.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_swizzle_func.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_vectorize.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/compute_common.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/compute_vector_relational.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_common.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_common_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_exponential.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_exponential_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_geometric.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_geometric_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_integer.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_integer_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_matrix.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_matrix_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_packing.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_packing_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_trigonometric.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_trigonometric_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/glm.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/qualifier.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/setup.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_float.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_half.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_half.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_quat.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_quat.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_quat_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec4_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/exponential.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_int_sized.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_uint_sized.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_common.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_common.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double1.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double1_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float1.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float1_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int1.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int1_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/fwd.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/geometric.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/glm.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/color_space.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/color_space.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/constants.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/constants.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/integer.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/integer.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_integer.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/noise.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/noise.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/packing.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/packing.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/quaternion_simd.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/random.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/random.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/reciprocal.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/reciprocal.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/round.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/round.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_aligned.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/ulp.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/ulp.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/vec1.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/bit.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/bit.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_space.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_space.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/common.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/common.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/easing.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/easing.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/extend.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/extend.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/float_notmalize.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/functions.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/functions.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/hash.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/hash.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/integer.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/integer.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/intersect.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/intersect.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/io.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/io.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/log_base.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/log_base.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/norm.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/norm.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/normal.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/normal.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/number_precision.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/number_precision.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/projection.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/projection.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/range.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/scalar_multiplication.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/spline.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/spline.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/texture.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/texture.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/transform.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/transform.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/transform2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/transform2.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vec_swizzle.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/wrap.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/wrap.inl +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/integer.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat2x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat2x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat2x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat3x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat3x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat3x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat4x2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat4x3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat4x4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/matrix.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/packing.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/common.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/exponential.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/geometric.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/integer.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/matrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/packing.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/platform.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/trigonometric.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/vector_relational.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/trigonometric.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/vec2.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/vec3.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/vec4.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/vector_relational.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/manual.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/readme.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/util/autoexp.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/util/autoexp.vc2010.dat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/util/glm.natvis +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/util/usertype.dat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/.clang-format +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/.git +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/.gitignore +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/.travis.yml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/LICENSE +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/happly.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/happly_logo.jpg +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/CMakeLists.txt.in +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/main_test.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf.ply +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_ascii.ply +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_big_endian.ply +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.editorconfig +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.git +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.gitattributes +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/FUNDING.yml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/issue_template.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/pull_request_template.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/build.yml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/scheduled.yml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/static-analysis.yml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.gitignore +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/LICENSE.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.mm +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3_loader.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.mm +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/generate_spv.sh +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.frag +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.vert +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/BACKENDS.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/CHANGELOG.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/EXAMPLES.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/FAQ.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/FONTS.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/TODO.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/README.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/imconfig_allegro5.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/.gitignore +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/build.gradle +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/java/MainActivity.kt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/build.gradle +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/settings.gradle +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/Info-iOS.plist +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/Info-macOS.plist +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/main.mm +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_opengl2/main.mm +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_opengl3/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_opengl3/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_opengl3/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_opengl3/shell_minimal.html +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/web/index.html +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/main.mm +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win64.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_directx11/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_directx11/example_sdl_directx11.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_directx11/example_sdl_directx11.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_directx11/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_metal/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_metal/main.mm +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/example_sdl_opengl2.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/example_sdl_opengl2.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/example_sdl_opengl3.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/example_sdl_opengl3.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/Makefile +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/example_sdl_sdlrenderer.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/example_sdl_sdlrenderer.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_vulkan/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_vulkan/example_sdl_vulkan.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_vulkan/example_sdl_vulkan.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_vulkan/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/build_win32.bat +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/main.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/imgui_examples.sln +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/COPYING.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3native.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/README.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imconfig.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_demo.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_draw.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_internal.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_tables.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_widgets.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imstb_rectpack.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imstb_textedit.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imstb_truetype.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/README.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/README.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/README.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.gdb +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natstepfilter +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natvis +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/DroidSans.ttf +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Karla-Regular.ttf +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyClean.ttf +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyTiny.ttf +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/binary_to_compressed_c.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/single_file/imgui_single_file.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/json/LICENSE.MIT +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/json/README.md +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/json/include/json/json.hpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/stb/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/stb/stb_image.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/stb/stb_image_write.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/stb/stb_impl.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/file2c/file2cpp.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/generate_colormap_constant.py +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/.gitignore +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/bin2vector.c +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/concrete_seamless.jpg +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/image2material.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/imagesrgb2material.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/render_material.blend +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/src/render/bindata/bindata_font_cousine_regular.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/src/render/bindata/bindata_font_lato_regular.cpp +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/test/CMakeLists.txt.in +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/attr.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/buffer_info.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/cast.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/chrono.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/common.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/complex.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/class.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/common.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/descr.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/init.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/internals.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/type_caster_base.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/typeid.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/eigen/matrix.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/eigen/tensor.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/eigen.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/embed.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/eval.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/functional.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/gil.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/iostream.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/numpy.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/operators.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/options.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/pybind11.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/pytypes.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/stl/filesystem.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/stl.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/stl_bind.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/constructor_stats.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/local_bindings.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/object.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/pybind11_tests.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_embed/CMakeLists.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_exceptions.h +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/FindCatch.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/FindEigen3.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/FindPythonLibsNew.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/JoinPaths.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/pybind11Common.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/pybind11NewTools.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/pybind11Tools.cmake +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/setup.cfg +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope/imgui/__init__.py +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope.egg-info/dependency_links.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope.egg-info/not-zip-safe +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope.egg-info/requires.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope.egg-info/top_level.txt +0 -0
- {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope_bindings/__init__.pyi +0 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.1.0)
|
|
2
|
+
project(polyscope-py)
|
|
3
|
+
|
|
4
|
+
# Gather dependencies
|
|
5
|
+
set(EIGEN3_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/deps/eigen/")
|
|
6
|
+
|
|
7
|
+
# Recurse in to pybind
|
|
8
|
+
add_subdirectory(deps/pybind11)
|
|
9
|
+
|
|
10
|
+
# We need polyscope
|
|
11
|
+
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
12
|
+
add_subdirectory(deps/polyscope)
|
|
13
|
+
|
|
14
|
+
pybind11_add_module(polyscope_bindings
|
|
15
|
+
src/cpp/core.cpp
|
|
16
|
+
src/cpp/surface_mesh.cpp
|
|
17
|
+
src/cpp/point_cloud.cpp
|
|
18
|
+
src/cpp/curve_network.cpp
|
|
19
|
+
src/cpp/volume_mesh.cpp
|
|
20
|
+
src/cpp/volume_grid.cpp
|
|
21
|
+
src/cpp/camera_view.cpp
|
|
22
|
+
src/cpp/floating_quantities.cpp
|
|
23
|
+
src/cpp/implicit_helpers.cpp
|
|
24
|
+
src/cpp/managed_buffer.cpp
|
|
25
|
+
src/cpp/imgui.cpp
|
|
26
|
+
)
|
|
27
|
+
set_target_properties(polyscope_bindings PROPERTIES CXX_VISIBILITY_PRESET "default")
|
|
28
|
+
|
|
29
|
+
target_include_directories(polyscope_bindings PUBLIC "${EIGEN3_INCLUDE_DIR}")
|
|
30
|
+
target_link_libraries(polyscope_bindings PRIVATE polyscope)
|
|
31
|
+
|
|
32
|
+
# make the resulting target actually be called polyscope, without the py
|
|
33
|
+
# set_target_properties(polyscope_py PROPERTIES OUTPUT_NAME polyscope)
|
polyscope-2.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: polyscope
|
|
3
|
+
Version: 2.1.0
|
|
4
|
+
Summary: Polyscope: A viewer and user interface for 3D data.
|
|
5
|
+
Home-page: https://polyscope.run
|
|
6
|
+
Author: Nicholas Sharp
|
|
7
|
+
Author-email: nmwsharp@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
|
|
13
|
+
# Polyscope's documentation is hosted at [polyscope.run](http://polyscope.run)
|
|
14
|
+
|
|
15
|
+
To contribute, check out the [instructions here](https://polyscope.run/about/contributing/).
|
|
16
|
+
|
|
17
|
+

|
|
18
|
+
|
|
19
|
+
[](https://github.com/nmwsharp/polyscope/actions)
|
|
20
|
+
[](https://github.com/nmwsharp/polyscope/actions)
|
|
21
|
+
[](https://github.com/nmwsharp/polyscope/actions)
|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
Polyscope is a C++/Python viewer and user interface for 3D data such as meshes and point clouds. It allows you to register your data and quickly generate informative and beautiful visualizations, either programmatically or via a dynamic GUI. Polyscope is designed to be lightweight---it does not "take ownership" over your entire program, and it is easy to integrate with existing codebases and popular libraries. The lofty objective of Polyscope is to offer a useful visual interface to your data via a single line of code.
|
|
25
|
+
|
|
26
|
+
Polyscope uses a paradigm of *structures* and *quantities*. A **structure** is a geometric object in the scene, such as a surface mesh or point cloud. A **quantity** is data associated with a structure, such as a scalar function or a vector field.
|
|
27
|
+
|
|
28
|
+
When any of these structures and quantities are registered, Polyscope displays them in an interactive 3D scene, handling boilerplate concerns such as toggling visibility, color-mapping data and adjusting maps, "picking" to click in the scene and query numerical quantities, etc.
|
|
29
|
+
|
|
30
|
+
C++:
|
|
31
|
+
|
|
32
|
+
``` C++
|
|
33
|
+
#include "polyscope/polyscope.h"
|
|
34
|
+
#include "polyscope/surface_mesh.h"
|
|
35
|
+
|
|
36
|
+
// Initialize polyscope
|
|
37
|
+
polyscope::init();
|
|
38
|
+
|
|
39
|
+
// Register a point cloud
|
|
40
|
+
// `points` is a Nx3 array-like container of points
|
|
41
|
+
polyscope::registerPointCloud("my points", points)
|
|
42
|
+
|
|
43
|
+
// Register a surface mesh structure
|
|
44
|
+
// `meshVerts` is a Vx3 array-like container of vertex positions
|
|
45
|
+
// `meshFaces` is a Fx3 array-like container of face indices
|
|
46
|
+
polyscope::registerSurfaceMesh("my mesh", meshVerts, meshFaces);
|
|
47
|
+
|
|
48
|
+
// Add a scalar and a vector function defined on the mesh
|
|
49
|
+
// `scalarQuantity` is a length V array-like container of values
|
|
50
|
+
// `vectorQuantity` is an Fx3 array-like container of vectors per face
|
|
51
|
+
polyscope::getSurfaceMesh("my mesh")->addVertexScalarQuantity("my_scalar", scalarQuantity);
|
|
52
|
+
polyscope::getSurfaceMesh("my mesh")->addFaceVectorQuantity("my_vector", vectorQuantity);
|
|
53
|
+
|
|
54
|
+
// View the point cloud and mesh we just registered in the 3D UI
|
|
55
|
+
polyscope::show();
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Python:
|
|
59
|
+
``` python
|
|
60
|
+
import polyscope as ps
|
|
61
|
+
|
|
62
|
+
# Initialize polyscope
|
|
63
|
+
ps.init()
|
|
64
|
+
|
|
65
|
+
### Register a point cloud
|
|
66
|
+
# `my_points` is a Nx3 numpy array
|
|
67
|
+
ps.register_point_cloud("my points", my_points)
|
|
68
|
+
|
|
69
|
+
### Register a mesh
|
|
70
|
+
# `verts` is a Nx3 numpy array of vertex positions
|
|
71
|
+
# `faces` is a Fx3 array of indices, or a nested list
|
|
72
|
+
ps.register_surface_mesh("my mesh", verts, faces, smooth_shade=True)
|
|
73
|
+
|
|
74
|
+
# Add a scalar function and a vector function defined on the mesh
|
|
75
|
+
# vertex_scalar is a length V numpy array of values
|
|
76
|
+
# face_vectors is an Fx3 array of vectors per face
|
|
77
|
+
ps.get_surface_mesh("my mesh").add_scalar_quantity("my_scalar",
|
|
78
|
+
vertex_scalar, defined_on='vertices', cmap='blues')
|
|
79
|
+
ps.get_surface_mesh("my mesh").add_vector_quantity("my_vector",
|
|
80
|
+
face_vectors, defined_on='faces', color=(0.2, 0.5, 0.5))
|
|
81
|
+
|
|
82
|
+
# View the point cloud and mesh we just registered in the 3D UI
|
|
83
|
+
ps.show()
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Polyscope is designed to make your life easier. It is simple to build, and fewer than 10 lines of code should be sufficient to start visualizing. In C++, some [template magic](https://polyscope.run/data_adaptors/) means Polyscope can probably accept the data types you're already using!
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
Author: [Nicholas Sharp](http://www.nmwsharp.com)
|
|
90
|
+
|
|
91
|
+
If Polyscope contributes to an academic publication, cite it as:
|
|
92
|
+
```bib
|
|
93
|
+
@misc{polyscope,
|
|
94
|
+
title = {Polyscope},
|
|
95
|
+
author = {Nicholas Sharp and others},
|
|
96
|
+
note = {www.polyscope.run},
|
|
97
|
+
year = {2019}
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Development of this software was funded in part by NSF Award 1717320, an NSF graduate research fellowship, and gifts from Adobe Research and Autodesk, Inc.
|
|
102
|
+
|
|
103
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# polyscope-py
|
|
2
|
+
Python bindings for Polyscope. https://polyscope.run/py
|
|
3
|
+
|
|
4
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
5
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
6
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
7
|
+
[](https://pypi.org/project/polyscope/)
|
|
8
|
+
[](https://anaconda.org/conda-forge/polyscope)
|
|
9
|
+
|
|
10
|
+
This library is a python wrapper and deployment system. The core library lives at https://github.com/nmwsharp/polyscope. See documentation at https://polyscope.run/py.
|
|
11
|
+
|
|
12
|
+
To contribute, check out the [instructions here](https://polyscope.run/about/contributing/).
|
|
13
|
+
|
|
14
|
+
### Installation
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
python -m pip install polyscope
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
or
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
conda install -c conda-forge polyscope
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
polyscope-py should work out-of-the-box on any combination of Python 3.5-3.12 and Linux/macOS/Windows. Your graphics hardware must support OpenGL >= 3.3 core profile.
|
|
27
|
+
|
|
28
|
+
## For developers
|
|
29
|
+
|
|
30
|
+
This repo is configured with CI on github actions.
|
|
31
|
+
|
|
32
|
+
- By default, all commits to the main branch build & run tests. Use `[ci skip]` to skip this.
|
|
33
|
+
- Tagging a commit with `[ci build]` causes it to also build all precompiled wheels and upload them as artifacts.
|
|
34
|
+
- Creating a tagged version like `v1.2.3` will build wheels as above, and ALSO automatically upload them to pypi as described below.
|
|
35
|
+
|
|
36
|
+
### Deploy a new version
|
|
37
|
+
|
|
38
|
+
- Commit the desired version to the `master` branch, be sure the version string in `setup.py` corresponds to the new version number. Use the `[ci build]` tag in the commit message to trigger builds, which should take about an hour.
|
|
39
|
+
- Watch the github actions builds to ensure all wheels build successfully. The resulting binaries will be saved as artifacts if you want try test with them.
|
|
40
|
+
- While you're waiting, update the docs, including the changelog.
|
|
41
|
+
- Tag the commit with a tag like `v1.2.3`, matching the version in `setup.py`. This will kick off a new github actions build which deploys the wheels to PyPI after compilation.
|
|
42
|
+
- If we are still doing builds with multiple rounds of actions, it may be necessary to manually upload some of the generated wheels. Download from the github actions `Summary/Artifacs` pane, then upload with `twine upload * --skip-existing`
|
|
43
|
+
- Update the conda builds by committing to the [feedstock repository](https://github.com/conda-forge/polyscope-feedstock). This generally just requires bumping the version number and updating the hash in `meta.yml`. Since `meta.yml` is configured to pull source from PyPi, you can't do this until after the source build has been uploaded from the github action.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
name: linux
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ master ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ master ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
strategy:
|
|
12
|
+
matrix:
|
|
13
|
+
os: [ubuntu-latest]
|
|
14
|
+
runs-on: ${{ matrix.os }}
|
|
15
|
+
if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v1
|
|
18
|
+
with:
|
|
19
|
+
submodules: true
|
|
20
|
+
|
|
21
|
+
- name: install packages
|
|
22
|
+
run: sudo apt-get update && sudo apt-get install -y xorg-dev libglu1-mesa-dev xpra xserver-xorg-video-dummy freeglut3-dev
|
|
23
|
+
|
|
24
|
+
- name: configure
|
|
25
|
+
run: cd test && mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DPOLYSCOPE_BACKEND_OPENGL3_GLFW=ON -DPOLYSCOPE_BACKEND_OPENGL_MOCK=ON ..
|
|
26
|
+
|
|
27
|
+
- name: build
|
|
28
|
+
run: cd test/build && make
|
|
29
|
+
|
|
30
|
+
- name: run test
|
|
31
|
+
run: cd test/build && ./bin/polyscope-test --gtest_catch_exceptions=0 backend=openGL_mock
|
|
32
|
+
|
|
33
|
+
build_shared:
|
|
34
|
+
strategy:
|
|
35
|
+
matrix:
|
|
36
|
+
os: [ubuntu-latest]
|
|
37
|
+
runs-on: ${{ matrix.os }}
|
|
38
|
+
if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
|
|
39
|
+
steps:
|
|
40
|
+
- uses: actions/checkout@v1
|
|
41
|
+
with:
|
|
42
|
+
submodules: true
|
|
43
|
+
|
|
44
|
+
- name: install packages
|
|
45
|
+
run: sudo apt-get update && sudo apt-get install -y xorg-dev libglu1-mesa-dev xpra xserver-xorg-video-dummy freeglut3-dev
|
|
46
|
+
|
|
47
|
+
- name: configure
|
|
48
|
+
run: cd test && mkdir build && cd build && cmake -DBUILD_SHARED_LIBS=TRUE -DCMAKE_BUILD_TYPE=Debug -DPOLYSCOPE_BACKEND_OPENGL3_GLFW=ON -DPOLYSCOPE_BACKEND_OPENGL_MOCK=ON ..
|
|
49
|
+
|
|
50
|
+
- name: build
|
|
51
|
+
run: cd test/build && make
|
|
52
|
+
|
|
53
|
+
- name: run test
|
|
54
|
+
run: cd test/build && ./bin/polyscope-test --gtest_catch_exceptions=0 backend=openGL_mock
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Build directories
|
|
2
|
+
build/
|
|
3
|
+
build_debug/
|
|
4
|
+
misc/file2c/file2cpp
|
|
5
|
+
|
|
6
|
+
# Editor and OS things
|
|
7
|
+
imgui.ini
|
|
8
|
+
.DS_Store
|
|
9
|
+
.vscode
|
|
10
|
+
*.swp
|
|
11
|
+
tags
|
|
12
|
+
*.blend1
|
|
13
|
+
.cache
|
|
14
|
+
compile_commands.json
|
|
15
|
+
|
|
16
|
+
# Prerequisites
|
|
17
|
+
*.d
|
|
18
|
+
|
|
19
|
+
# Compiled Object files
|
|
20
|
+
*.slo
|
|
21
|
+
*.lo
|
|
22
|
+
*.o
|
|
23
|
+
*.obj
|
|
24
|
+
|
|
25
|
+
# Precompiled Headers
|
|
26
|
+
*.gch
|
|
27
|
+
*.pch
|
|
28
|
+
|
|
29
|
+
# Compiled Dynamic libraries
|
|
30
|
+
*.so
|
|
31
|
+
*.dylib
|
|
32
|
+
*.dll
|
|
33
|
+
|
|
34
|
+
# Fortran module files
|
|
35
|
+
*.mod
|
|
36
|
+
*.smod
|
|
37
|
+
|
|
38
|
+
# Compiled Static libraries
|
|
39
|
+
*.lai
|
|
40
|
+
*.la
|
|
41
|
+
*.a
|
|
42
|
+
*.lib
|
|
43
|
+
|
|
44
|
+
# Executables
|
|
45
|
+
*.exe
|
|
46
|
+
*.out
|
|
47
|
+
*.app
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
if("${POLYSCOPE_BACKEND_OPENGL3_GLFW}")
|
|
2
|
+
|
|
3
|
+
## Glad
|
|
4
|
+
add_subdirectory(glad)
|
|
5
|
+
|
|
6
|
+
## GLFW
|
|
7
|
+
set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE)
|
|
8
|
+
set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE)
|
|
9
|
+
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
|
|
10
|
+
set(GLFW_INSTALL OFF CACHE BOOL "" FORCE)
|
|
11
|
+
add_subdirectory(glfw)
|
|
12
|
+
endif()
|
|
13
|
+
|
|
14
|
+
if("${POLYSCOPE_BACKEND_OPENGL_MOCK}")
|
|
15
|
+
endif()
|
|
16
|
+
|
|
17
|
+
## Imgui
|
|
18
|
+
add_subdirectory(imgui)
|
|
19
|
+
|
|
20
|
+
## Argparse
|
|
21
|
+
|
|
22
|
+
## Other dependencies
|
|
23
|
+
add_subdirectory(stb)
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
From: https://github.com/aparis69/MarchingCubeCpp
|
|
2
|
+
|
|
3
|
+
nsharp: made small changes to use glm vector class and expose an isolevel argument
|
|
4
|
+
|
|
5
|
+
## Marching Cube C++
|
|
6
|
+
A public domain header-only marching cube implementation in C/C++ without anything fancy. Only dependencies are cmath
|
|
7
|
+
and vector headers. I could get rid of vector and just use plain arrays, but it is more convenient for my personal
|
|
8
|
+
projects to keep that way, though one could easily modify the implementation.
|
|
9
|
+
|
|
10
|
+
This work was motivated by this public domain implementation of the marching cube: https://github.com/nsf/mc which gives
|
|
11
|
+
a fully runnable example in OpenGL. I thought it could be simplified and could make a good header-only library.
|
|
12
|
+
|
|
13
|
+
## Behaviour
|
|
14
|
+
Calling MC::marching_cube will create an indexed mesh with vertices and normals defined in their own std::vector's.
|
|
15
|
+
By default, data is allocated for vertices, normals and triangle indices. You can change the default allocated
|
|
16
|
+
space using the function MC::setDefaultArraySizes.
|
|
17
|
+
|
|
18
|
+
The output mesh represents the zero-isosurface of the input scalar field. Coordinates of the vertices will follow
|
|
19
|
+
the grid discretization: a 128x128x128 grid will create a mesh embedded in the axis-aligned box from Vec3(0) to Vec3(128).
|
|
20
|
+
|
|
21
|
+
You can optionally enable double precision by defining MC_CPP_USE_DOUBLE_PRECISION before including the header.
|
|
22
|
+
|
|
23
|
+
## Use
|
|
24
|
+
First define MC_CPP_ENABLE and then include MC.h in your project. Example:
|
|
25
|
+
```cpp
|
|
26
|
+
#define MC_IMPLEM_ENABLE
|
|
27
|
+
#include "MC.h"
|
|
28
|
+
|
|
29
|
+
int main()
|
|
30
|
+
{
|
|
31
|
+
// First compute a scalar field
|
|
32
|
+
const int n = 100;
|
|
33
|
+
MC::MC_FLOAT* field = new MC::MC_FLOAT[n * n * n];
|
|
34
|
+
// [...]
|
|
35
|
+
|
|
36
|
+
// Compute isosurface using marching cube
|
|
37
|
+
MC::mcMesh mesh;
|
|
38
|
+
MC::marching_cube(field, n, n, n, mesh);
|
|
39
|
+
|
|
40
|
+
// Dot whatever you want with the mesh
|
|
41
|
+
// [...]
|
|
42
|
+
|
|
43
|
+
return 0;
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
You may find a complete example in main.cpp file. Running the program in the repository will output an obj file showing
|
|
48
|
+
the isosurface of a single perlin noise octave.
|
|
49
|
+
|
|
50
|
+
## Licence
|
|
51
|
+
Double Licence, whatever fits you best: Public domain or MIT License.
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
#ifndef MC_CPP_INCLUDED
|
|
2
|
+
#define MC_CPP_INCLUDED
|
|
3
|
+
|
|
4
|
+
#include <vector>
|
|
5
|
+
#include <cmath>
|
|
6
|
+
|
|
7
|
+
// Added by nsharp: use glm instead of internal vector class
|
|
8
|
+
#include <glm/glm.hpp>
|
|
9
|
+
#include <glm/gtx/norm.hpp>
|
|
10
|
+
|
|
11
|
+
namespace MC
|
|
12
|
+
{
|
|
13
|
+
// Optionally define double precision
|
|
14
|
+
#ifdef MC_CPP_USE_DOUBLE_PRECISION
|
|
15
|
+
typedef double MC_FLOAT;
|
|
16
|
+
#else
|
|
17
|
+
typedef float MC_FLOAT;
|
|
18
|
+
#endif
|
|
19
|
+
|
|
20
|
+
typedef unsigned int muint;
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
static inline MC_FLOAT mc_internalLength2(const glm::vec3& v)
|
|
24
|
+
{
|
|
25
|
+
return glm::length2(v);
|
|
26
|
+
}
|
|
27
|
+
static inline MC_FLOAT mc_internalLength(const glm::vec3& v)
|
|
28
|
+
{
|
|
29
|
+
return glm::length(v);
|
|
30
|
+
}
|
|
31
|
+
static inline glm::vec3 mc_internalNormalize(const glm::vec3& v)
|
|
32
|
+
{
|
|
33
|
+
return glm::normalize(v);
|
|
34
|
+
}
|
|
35
|
+
static inline glm::vec3 mc_internalCross(const glm::vec3& v1, const glm::vec3& v2)
|
|
36
|
+
{
|
|
37
|
+
return glm::cross(v1, v2);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
typedef struct mcVec3i
|
|
41
|
+
{
|
|
42
|
+
public:
|
|
43
|
+
union
|
|
44
|
+
{
|
|
45
|
+
muint v[3];
|
|
46
|
+
struct
|
|
47
|
+
{
|
|
48
|
+
muint x, y, z;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
inline muint& operator[](int i) { return v[i]; }
|
|
52
|
+
} mcVec3i;
|
|
53
|
+
|
|
54
|
+
typedef struct mcMesh
|
|
55
|
+
{
|
|
56
|
+
public:
|
|
57
|
+
std::vector<glm::vec3> vertices;
|
|
58
|
+
std::vector<glm::vec3> normals;
|
|
59
|
+
std::vector<muint> indices;
|
|
60
|
+
} mcMesh;
|
|
61
|
+
|
|
62
|
+
void marching_cube(MC_FLOAT* field, MC_FLOAT isoval, muint nx, muint ny, muint nz, mcMesh& outputMesh);
|
|
63
|
+
void setDefaultArraySizes(muint vertSize, muint normSize, muint triSize);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
#endif
|
|
68
|
+
|
|
69
|
+
namespace MC
|
|
70
|
+
{
|
|
71
|
+
#ifdef MC_IMPLEM_ENABLE
|
|
72
|
+
static muint defaultVerticeArraySize = 100000;
|
|
73
|
+
static muint defaultNormalArraySize = 100000;
|
|
74
|
+
static muint defaultTriangleArraySize = 400000;
|
|
75
|
+
|
|
76
|
+
static inline muint mc_internalToIndex1D(muint i, muint j, muint k, const mcVec3i& size)
|
|
77
|
+
{
|
|
78
|
+
//return (k * size.y + j) * size.x + i;
|
|
79
|
+
return (i * size.y + j) * size.z + k;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
static inline muint mc_internalToIndex1DSlab(muint i, muint j, muint k, const mcVec3i& size)
|
|
83
|
+
{
|
|
84
|
+
return size.x * size.y * (k % 2) + j * size.x + i;
|
|
85
|
+
//return size.z * size.y * (i % 2) + j * size.z + k;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Look-up table for triangle configurations
|
|
89
|
+
static const unsigned long long mc_internalMarching_cube_tris[256] =
|
|
90
|
+
{
|
|
91
|
+
0ULL, 33793ULL, 36945ULL, 159668546ULL,
|
|
92
|
+
18961ULL, 144771090ULL, 5851666ULL, 595283255635ULL,
|
|
93
|
+
20913ULL, 67640146ULL, 193993474ULL, 655980856339ULL,
|
|
94
|
+
88782242ULL, 736732689667ULL, 797430812739ULL, 194554754ULL,
|
|
95
|
+
26657ULL, 104867330ULL, 136709522ULL, 298069416227ULL,
|
|
96
|
+
109224258ULL, 8877909667ULL, 318136408323ULL, 1567994331701604ULL,
|
|
97
|
+
189884450ULL, 350847647843ULL, 559958167731ULL, 3256298596865604ULL,
|
|
98
|
+
447393122899ULL, 651646838401572ULL, 2538311371089956ULL, 737032694307ULL,
|
|
99
|
+
29329ULL, 43484162ULL, 91358498ULL, 374810899075ULL,
|
|
100
|
+
158485010ULL, 178117478419ULL, 88675058979ULL, 433581536604804ULL,
|
|
101
|
+
158486962ULL, 649105605635ULL, 4866906995ULL, 3220959471609924ULL,
|
|
102
|
+
649165714851ULL, 3184943915608436ULL, 570691368417972ULL, 595804498035ULL,
|
|
103
|
+
124295042ULL, 431498018963ULL, 508238522371ULL, 91518530ULL,
|
|
104
|
+
318240155763ULL, 291789778348404ULL, 1830001131721892ULL, 375363605923ULL,
|
|
105
|
+
777781811075ULL, 1136111028516116ULL, 3097834205243396ULL, 508001629971ULL,
|
|
106
|
+
2663607373704004ULL, 680242583802939237ULL, 333380770766129845ULL, 179746658ULL,
|
|
107
|
+
42545ULL, 138437538ULL, 93365810ULL, 713842853011ULL,
|
|
108
|
+
73602098ULL, 69575510115ULL, 23964357683ULL, 868078761575828ULL,
|
|
109
|
+
28681778ULL, 713778574611ULL, 250912709379ULL, 2323825233181284ULL,
|
|
110
|
+
302080811955ULL, 3184439127991172ULL, 1694042660682596ULL, 796909779811ULL,
|
|
111
|
+
176306722ULL, 150327278147ULL, 619854856867ULL, 1005252473234484ULL,
|
|
112
|
+
211025400963ULL, 36712706ULL, 360743481544788ULL, 150627258963ULL,
|
|
113
|
+
117482600995ULL, 1024968212107700ULL, 2535169275963444ULL, 4734473194086550421ULL,
|
|
114
|
+
628107696687956ULL, 9399128243ULL, 5198438490361643573ULL, 194220594ULL,
|
|
115
|
+
104474994ULL, 566996932387ULL, 427920028243ULL, 2014821863433780ULL,
|
|
116
|
+
492093858627ULL, 147361150235284ULL, 2005882975110676ULL, 9671606099636618005ULL,
|
|
117
|
+
777701008947ULL, 3185463219618820ULL, 482784926917540ULL, 2900953068249785909ULL,
|
|
118
|
+
1754182023747364ULL, 4274848857537943333ULL, 13198752741767688709ULL, 2015093490989156ULL,
|
|
119
|
+
591272318771ULL, 2659758091419812ULL, 1531044293118596ULL, 298306479155ULL,
|
|
120
|
+
408509245114388ULL, 210504348563ULL, 9248164405801223541ULL, 91321106ULL,
|
|
121
|
+
2660352816454484ULL, 680170263324308757ULL, 8333659837799955077ULL, 482966828984116ULL,
|
|
122
|
+
4274926723105633605ULL, 3184439197724820ULL, 192104450ULL, 15217ULL,
|
|
123
|
+
45937ULL, 129205250ULL, 129208402ULL, 529245952323ULL,
|
|
124
|
+
169097138ULL, 770695537027ULL, 382310500883ULL, 2838550742137652ULL,
|
|
125
|
+
122763026ULL, 277045793139ULL, 81608128403ULL, 1991870397907988ULL,
|
|
126
|
+
362778151475ULL, 2059003085103236ULL, 2132572377842852ULL, 655681091891ULL,
|
|
127
|
+
58419234ULL, 239280858627ULL, 529092143139ULL, 1568257451898804ULL,
|
|
128
|
+
447235128115ULL, 679678845236084ULL, 2167161349491220ULL, 1554184567314086709ULL,
|
|
129
|
+
165479003923ULL, 1428768988226596ULL, 977710670185060ULL, 10550024711307499077ULL,
|
|
130
|
+
1305410032576132ULL, 11779770265620358997ULL, 333446212255967269ULL, 978168444447012ULL,
|
|
131
|
+
162736434ULL, 35596216627ULL, 138295313843ULL, 891861543990356ULL,
|
|
132
|
+
692616541075ULL, 3151866750863876ULL, 100103641866564ULL, 6572336607016932133ULL,
|
|
133
|
+
215036012883ULL, 726936420696196ULL, 52433666ULL, 82160664963ULL,
|
|
134
|
+
2588613720361524ULL, 5802089162353039525ULL, 214799000387ULL, 144876322ULL,
|
|
135
|
+
668013605731ULL, 110616894681956ULL, 1601657732871812ULL, 430945547955ULL,
|
|
136
|
+
3156382366321172ULL, 7644494644932993285ULL, 3928124806469601813ULL, 3155990846772900ULL,
|
|
137
|
+
339991010498708ULL, 10743689387941597493ULL, 5103845475ULL, 105070898ULL,
|
|
138
|
+
3928064910068824213ULL, 156265010ULL, 1305138421793636ULL, 27185ULL,
|
|
139
|
+
195459938ULL, 567044449971ULL, 382447549283ULL, 2175279159592324ULL,
|
|
140
|
+
443529919251ULL, 195059004769796ULL, 2165424908404116ULL, 1554158691063110021ULL,
|
|
141
|
+
504228368803ULL, 1436350466655236ULL, 27584723588724ULL, 1900945754488837749ULL,
|
|
142
|
+
122971970ULL, 443829749251ULL, 302601798803ULL, 108558722ULL,
|
|
143
|
+
724700725875ULL, 43570095105972ULL, 2295263717447940ULL, 2860446751369014181ULL,
|
|
144
|
+
2165106202149444ULL, 69275726195ULL, 2860543885641537797ULL, 2165106320445780ULL,
|
|
145
|
+
2280890014640004ULL, 11820349930268368933ULL, 8721082628082003989ULL, 127050770ULL,
|
|
146
|
+
503707084675ULL, 122834978ULL, 2538193642857604ULL, 10129ULL,
|
|
147
|
+
801441490467ULL, 2923200302876740ULL, 1443359556281892ULL, 2901063790822564949ULL,
|
|
148
|
+
2728339631923524ULL, 7103874718248233397ULL, 12775311047932294245ULL, 95520290ULL,
|
|
149
|
+
2623783208098404ULL, 1900908618382410757ULL, 137742672547ULL, 2323440239468964ULL,
|
|
150
|
+
362478212387ULL, 727199575803140ULL, 73425410ULL, 34337ULL,
|
|
151
|
+
163101314ULL, 668566030659ULL, 801204361987ULL, 73030562ULL,
|
|
152
|
+
591509145619ULL, 162574594ULL, 100608342969108ULL, 5553ULL,
|
|
153
|
+
724147968595ULL, 1436604830452292ULL, 176259090ULL, 42001ULL,
|
|
154
|
+
143955266ULL, 2385ULL, 18433ULL, 0ULL,
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
/*!
|
|
158
|
+
\brief Approximates the vertex position of the mesh from the scalar values along an edge (va, vb).
|
|
159
|
+
\param slab_inds slab indices global array
|
|
160
|
+
\param mesh the mesh
|
|
161
|
+
\param va, vb edges values
|
|
162
|
+
\param axis axis index 0/1/2
|
|
163
|
+
\param x, y, z current slab index
|
|
164
|
+
\param size slab indices array size
|
|
165
|
+
*/
|
|
166
|
+
static void mc_internalComputeEdge(mcVec3i* slab_inds, mcMesh& mesh, float va, float vb, int axis, muint x, muint y, muint z, const mcVec3i& size)
|
|
167
|
+
{
|
|
168
|
+
if ((va < 0.0) == (vb < 0.0))
|
|
169
|
+
return;
|
|
170
|
+
glm::vec3 v = { MC_FLOAT(x), MC_FLOAT(y), MC_FLOAT(z) };
|
|
171
|
+
v[axis] += va / (va - vb);
|
|
172
|
+
slab_inds[mc_internalToIndex1DSlab(x, y, z, size)][axis] = muint(mesh.vertices.size());
|
|
173
|
+
mesh.vertices.push_back(v);
|
|
174
|
+
mesh.normals.push_back(glm::vec3({ 0, 0, 0 }));
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/*!
|
|
178
|
+
\brief Computes and acumulates the geometric normal of triangle formed by vertices (a, b, c).
|
|
179
|
+
\param mesh the mesh
|
|
180
|
+
\param a, b, c vertex indices
|
|
181
|
+
*/
|
|
182
|
+
static inline void mc_internalAccumulateNormal(mcMesh& mesh, muint a, muint b, muint c)
|
|
183
|
+
{
|
|
184
|
+
glm::vec3& va = mesh.vertices[a];
|
|
185
|
+
glm::vec3& vb = mesh.vertices[b];
|
|
186
|
+
glm::vec3& vc = mesh.vertices[c];
|
|
187
|
+
glm::vec3 ab = va - vb;
|
|
188
|
+
glm::vec3 cb = vc - vb;
|
|
189
|
+
glm::vec3 n = mc_internalCross(cb, ab);
|
|
190
|
+
mesh.normals[a] += n;
|
|
191
|
+
mesh.normals[b] += n;
|
|
192
|
+
mesh.normals[c] += n;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
/*
|
|
197
|
+
\brief Stores the default array sizes for the indexed mesh computed
|
|
198
|
+
by the marching cubes. Useful for speeding-up the marching cubes.
|
|
199
|
+
\param vertSize vertex array size
|
|
200
|
+
\param normSize normal array size
|
|
201
|
+
\param triSize triangle index array size
|
|
202
|
+
*/
|
|
203
|
+
inline void setDefaultArraySizes(muint vertSize, muint normSize, muint triSize)
|
|
204
|
+
{
|
|
205
|
+
defaultVerticeArraySize = vertSize;
|
|
206
|
+
defaultNormalArraySize = normSize;
|
|
207
|
+
defaultTriangleArraySize = triSize;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/*!
|
|
211
|
+
\brief Computes the mesh representing the zero isosurface of a 3D scalarfield and
|
|
212
|
+
outputs it to an indexed mesh.
|
|
213
|
+
\param field scalarfield of real values in C-contiguous order: the value for grid point
|
|
214
|
+
(ix, iy, iz) is stored at index (iz*ny + iy)*nx + ix
|
|
215
|
+
\param nx, ny, nz grid dimension
|
|
216
|
+
\param outputMesh indexed mesh returned.
|
|
217
|
+
*/
|
|
218
|
+
void marching_cube(MC_FLOAT* field, MC_FLOAT isoval, muint nx, muint ny, muint nz, mcMesh& outputMesh)
|
|
219
|
+
{
|
|
220
|
+
outputMesh.vertices.reserve(defaultVerticeArraySize);
|
|
221
|
+
outputMesh.normals.reserve(defaultNormalArraySize);
|
|
222
|
+
outputMesh.indices.reserve(defaultTriangleArraySize);
|
|
223
|
+
|
|
224
|
+
const mcVec3i size = { nx, ny, nz };
|
|
225
|
+
mcVec3i* slab_inds = new mcVec3i[nx * ny * 2];
|
|
226
|
+
MC_FLOAT vs[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
|
|
227
|
+
muint edge_indices[12];
|
|
228
|
+
for (muint z = 0; z < nz - 1; z++)
|
|
229
|
+
{
|
|
230
|
+
for (muint y = 0; y < ny - 1; y++)
|
|
231
|
+
{
|
|
232
|
+
for (muint x = 0; x < nx - 1; x++)
|
|
233
|
+
{
|
|
234
|
+
vs[0] = -isoval + field[mc_internalToIndex1D(x, y, z, size)];
|
|
235
|
+
vs[1] = -isoval + field[mc_internalToIndex1D(x + 1, y, z, size)];
|
|
236
|
+
vs[2] = -isoval + field[mc_internalToIndex1D(x, y + 1, z, size)];
|
|
237
|
+
vs[3] = -isoval + field[mc_internalToIndex1D(x + 1, y + 1, z, size)];
|
|
238
|
+
vs[4] = -isoval + field[mc_internalToIndex1D(x, y, z + 1, size)];
|
|
239
|
+
vs[5] = -isoval + field[mc_internalToIndex1D(x + 1, y, z + 1, size)];
|
|
240
|
+
vs[6] = -isoval + field[mc_internalToIndex1D(x, y + 1, z + 1, size)];
|
|
241
|
+
vs[7] = -isoval + field[mc_internalToIndex1D(x + 1, y + 1, z + 1, size)];
|
|
242
|
+
|
|
243
|
+
const int config_n =
|
|
244
|
+
((vs[0] < 0) << 0) |
|
|
245
|
+
((vs[1] < 0) << 1) |
|
|
246
|
+
((vs[2] < 0) << 2) |
|
|
247
|
+
((vs[3] < 0) << 3) |
|
|
248
|
+
((vs[4] < 0) << 4) |
|
|
249
|
+
((vs[5] < 0) << 5) |
|
|
250
|
+
((vs[6] < 0) << 6) |
|
|
251
|
+
((vs[7] < 0) << 7);
|
|
252
|
+
if (config_n == 0 || config_n == 255)
|
|
253
|
+
continue;
|
|
254
|
+
|
|
255
|
+
if (y == 0 && z == 0)
|
|
256
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[0], vs[1], 0, x, y, z, size);
|
|
257
|
+
if (z == 0)
|
|
258
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[2], vs[3], 0, x, y + 1, z, size);
|
|
259
|
+
if (y == 0)
|
|
260
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[4], vs[5], 0, x, y, z + 1, size);
|
|
261
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[6], vs[7], 0, x, y + 1, z + 1, size);
|
|
262
|
+
|
|
263
|
+
if (x == 0 && z == 0)
|
|
264
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[0], vs[2], 1, x, y, z, size);
|
|
265
|
+
if (z == 0)
|
|
266
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[1], vs[3], 1,x + 1, y, z, size);
|
|
267
|
+
if (x == 0)
|
|
268
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[4], vs[6], 1, x, y, z + 1, size);
|
|
269
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[5], vs[7], 1, x + 1, y, z + 1, size);
|
|
270
|
+
|
|
271
|
+
if (x == 0 && y == 0)
|
|
272
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[0], vs[4], 2, x, y, z, size);
|
|
273
|
+
if (y == 0)
|
|
274
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[1], vs[5], 2, x + 1, y, z, size);
|
|
275
|
+
if (x == 0)
|
|
276
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[2], vs[6], 2, x, y + 1, z, size);
|
|
277
|
+
mc_internalComputeEdge(slab_inds, outputMesh, vs[3], vs[7], 2, x + 1, y + 1, z, size);
|
|
278
|
+
|
|
279
|
+
edge_indices[0] = slab_inds[mc_internalToIndex1DSlab(x, y, z, size)].x;
|
|
280
|
+
edge_indices[1] = slab_inds[mc_internalToIndex1DSlab(x, y + 1, z, size)].x;
|
|
281
|
+
edge_indices[2] = slab_inds[mc_internalToIndex1DSlab(x, y, z + 1, size)].x;
|
|
282
|
+
edge_indices[3] = slab_inds[mc_internalToIndex1DSlab(x, y + 1, z + 1, size)].x;
|
|
283
|
+
edge_indices[4] = slab_inds[mc_internalToIndex1DSlab(x, y, z, size)].y;
|
|
284
|
+
edge_indices[5] = slab_inds[mc_internalToIndex1DSlab(x + 1, y, z, size)].y;
|
|
285
|
+
edge_indices[6] = slab_inds[mc_internalToIndex1DSlab(x, y, z + 1, size)].y;
|
|
286
|
+
edge_indices[7] = slab_inds[mc_internalToIndex1DSlab(x + 1, y, z + 1, size)].y;
|
|
287
|
+
edge_indices[8] = slab_inds[mc_internalToIndex1DSlab(x, y, z, size)].z;
|
|
288
|
+
edge_indices[9] = slab_inds[mc_internalToIndex1DSlab(x + 1, y, z, size)].z;
|
|
289
|
+
edge_indices[10] = slab_inds[mc_internalToIndex1DSlab(x, y + 1, z, size)].z;
|
|
290
|
+
edge_indices[11] = slab_inds[mc_internalToIndex1DSlab(x + 1, y + 1, z, size)].z;
|
|
291
|
+
|
|
292
|
+
const uint64_t& config = mc_internalMarching_cube_tris[config_n];
|
|
293
|
+
const size_t n_triangles = config & 0xF;
|
|
294
|
+
const size_t n_indices = n_triangles * 3;
|
|
295
|
+
const size_t& indexBase = outputMesh.indices.size();
|
|
296
|
+
int offset = 4;
|
|
297
|
+
for (size_t i = 0; i < n_indices; i++)
|
|
298
|
+
{
|
|
299
|
+
const int edge = (config >> offset) & 0xF;
|
|
300
|
+
outputMesh.indices.push_back(edge_indices[edge]);
|
|
301
|
+
offset += 4;
|
|
302
|
+
}
|
|
303
|
+
for (size_t i = 0; i < n_triangles; i++)
|
|
304
|
+
{
|
|
305
|
+
mc_internalAccumulateNormal(outputMesh,
|
|
306
|
+
outputMesh.indices[indexBase + i * 3 + 0],
|
|
307
|
+
outputMesh.indices[indexBase + i * 3 + 1],
|
|
308
|
+
outputMesh.indices[indexBase + i * 3 + 2]);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
for (size_t i = 0; i < outputMesh.normals.size(); i++)
|
|
314
|
+
outputMesh.normals[i] = mc_internalNormalize(outputMesh.normals[i]);
|
|
315
|
+
delete[] slab_inds;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
#endif
|
|
319
|
+
}
|