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.
Files changed (1742) hide show
  1. polyscope-2.1.0/CMakeLists.txt +33 -0
  2. polyscope-2.1.0/PKG-INFO +103 -0
  3. polyscope-2.1.0/README.md +43 -0
  4. polyscope-2.1.0/deps/polyscope/.github/workflows/linux.yml +54 -0
  5. polyscope-2.1.0/deps/polyscope/.gitignore +47 -0
  6. polyscope-2.1.0/deps/polyscope/deps/CMakeLists.txt +23 -0
  7. polyscope-2.1.0/deps/polyscope/deps/MarchingCubeCpp/README.md +51 -0
  8. polyscope-2.1.0/deps/polyscope/deps/MarchingCubeCpp/include/MarchingCube/MC.h +319 -0
  9. polyscope-2.1.0/deps/polyscope/deps/glad/src/CMakeLists.txt +18 -0
  10. polyscope-2.1.0/deps/polyscope/deps/glfw/.github/workflows/build.yml +117 -0
  11. polyscope-2.1.0/deps/polyscope/deps/glfw/CMakeLists.txt +388 -0
  12. polyscope-2.1.0/deps/polyscope/deps/glfw/CONTRIBUTORS.md +268 -0
  13. polyscope-2.1.0/deps/polyscope/deps/glfw/README.md +170 -0
  14. polyscope-2.1.0/deps/polyscope/deps/glfw/deps/glad/vk_platform.h +84 -0
  15. polyscope-2.1.0/deps/polyscope/deps/glfw/deps/glad/vulkan.h +5508 -0
  16. polyscope-2.1.0/deps/polyscope/deps/glfw/deps/glad_vulkan.c +733 -0
  17. polyscope-2.1.0/deps/polyscope/deps/glfw/deps/stb_image_write.h +1724 -0
  18. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/CONTRIBUTING.md +391 -0
  19. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/Doxyfile.in +2737 -0
  20. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/build.dox +348 -0
  21. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/compat.dox +289 -0
  22. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/compile.dox +368 -0
  23. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/context.dox +347 -0
  24. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/input.dox +968 -0
  25. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/intro.dox +479 -0
  26. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/monitor.dox +268 -0
  27. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/moving.dox +513 -0
  28. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/news.dox +902 -0
  29. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/quick.dox +361 -0
  30. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/vulkan.dox +242 -0
  31. polyscope-2.1.0/deps/polyscope/deps/glfw/docs/window.dox +1413 -0
  32. polyscope-2.1.0/deps/polyscope/deps/glfw/include/GLFW/glfw3.h +5932 -0
  33. polyscope-2.1.0/deps/polyscope/deps/glfw/include/GLFW/glfw3native.h +634 -0
  34. polyscope-2.1.0/deps/polyscope/deps/glfw/src/CMakeLists.txt +196 -0
  35. polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_init.m +633 -0
  36. polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_joystick.m +493 -0
  37. polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_monitor.m +627 -0
  38. polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_platform.h +220 -0
  39. polyscope-2.1.0/deps/polyscope/deps/glfw/src/cocoa_window.m +1939 -0
  40. polyscope-2.1.0/deps/polyscope/deps/glfw/src/context.c +767 -0
  41. polyscope-2.1.0/deps/polyscope/deps/glfw/src/egl_context.c +850 -0
  42. polyscope-2.1.0/deps/polyscope/deps/glfw/src/egl_context.h +217 -0
  43. polyscope-2.1.0/deps/polyscope/deps/glfw/src/glfw3.pc.in +13 -0
  44. polyscope-2.1.0/deps/polyscope/deps/glfw/src/glfw_config.h.in +58 -0
  45. polyscope-2.1.0/deps/polyscope/deps/glfw/src/glx_context.c +706 -0
  46. polyscope-2.1.0/deps/polyscope/deps/glfw/src/glx_context.h +178 -0
  47. polyscope-2.1.0/deps/polyscope/deps/glfw/src/init.c +426 -0
  48. polyscope-2.1.0/deps/polyscope/deps/glfw/src/input.c +1386 -0
  49. polyscope-2.1.0/deps/polyscope/deps/glfw/src/internal.h +789 -0
  50. polyscope-2.1.0/deps/polyscope/deps/glfw/src/linux_joystick.c +437 -0
  51. polyscope-2.1.0/deps/polyscope/deps/glfw/src/linux_joystick.h +64 -0
  52. polyscope-2.1.0/deps/polyscope/deps/glfw/src/monitor.c +542 -0
  53. polyscope-2.1.0/deps/polyscope/deps/glfw/src/nsgl_context.h +66 -0
  54. polyscope-2.1.0/deps/polyscope/deps/glfw/src/nsgl_context.m +375 -0
  55. polyscope-2.1.0/deps/polyscope/deps/glfw/src/null_window.c +335 -0
  56. polyscope-2.1.0/deps/polyscope/deps/glfw/src/osmesa_context.c +386 -0
  57. polyscope-2.1.0/deps/polyscope/deps/glfw/src/vulkan.c +334 -0
  58. polyscope-2.1.0/deps/polyscope/deps/glfw/src/wgl_context.c +787 -0
  59. polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_init.c +638 -0
  60. polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_joystick.c +762 -0
  61. polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_monitor.c +548 -0
  62. polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_platform.h +460 -0
  63. polyscope-2.1.0/deps/polyscope/deps/glfw/src/win32_window.c +2418 -0
  64. polyscope-2.1.0/deps/polyscope/deps/glfw/src/window.c +1101 -0
  65. polyscope-2.1.0/deps/polyscope/deps/glfw/src/wl_init.c +751 -0
  66. polyscope-2.1.0/deps/polyscope/deps/glfw/src/wl_monitor.c +273 -0
  67. polyscope-2.1.0/deps/polyscope/deps/glfw/src/wl_platform.h +530 -0
  68. polyscope-2.1.0/deps/polyscope/deps/glfw/src/wl_window.c +3057 -0
  69. polyscope-2.1.0/deps/polyscope/deps/glfw/src/x11_init.c +1274 -0
  70. polyscope-2.1.0/deps/polyscope/deps/glfw/src/x11_platform.h +450 -0
  71. polyscope-2.1.0/deps/polyscope/deps/glfw/src/x11_window.c +3235 -0
  72. polyscope-2.1.0/deps/polyscope/deps/glfw/src/xkb_unicode.c +942 -0
  73. polyscope-2.1.0/deps/polyscope/deps/glfw/src/xkb_unicode.h +30 -0
  74. polyscope-2.1.0/deps/polyscope/deps/glfw/tests/events.c +650 -0
  75. polyscope-2.1.0/deps/polyscope/deps/glfw/tests/gamma.c +185 -0
  76. polyscope-2.1.0/deps/polyscope/deps/glfw/tests/glfwinfo.c +971 -0
  77. polyscope-2.1.0/deps/polyscope/deps/glfw/tests/iconify.c +297 -0
  78. polyscope-2.1.0/deps/polyscope/deps/glfw/tests/triangle-vulkan.c +2139 -0
  79. polyscope-2.1.0/deps/polyscope/examples/demo-app/CMakeLists.txt +86 -0
  80. polyscope-2.1.0/deps/polyscope/examples/demo-app/demo_app.cpp +884 -0
  81. polyscope-2.1.0/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.h +8 -0
  82. polyscope-2.1.0/deps/polyscope/examples/demo-app/surface_mesh_io.cpp +148 -0
  83. polyscope-2.1.0/deps/polyscope/examples/demo-app/surface_mesh_io.h +18 -0
  84. polyscope-2.1.0/deps/polyscope/include/polyscope/affine_remapper.h +72 -0
  85. polyscope-2.1.0/deps/polyscope/include/polyscope/affine_remapper.ipp +190 -0
  86. polyscope-2.1.0/deps/polyscope/include/polyscope/camera_parameters.h +129 -0
  87. polyscope-2.1.0/deps/polyscope/include/polyscope/camera_parameters.ipp +15 -0
  88. polyscope-2.1.0/deps/polyscope/include/polyscope/camera_view.h +144 -0
  89. polyscope-2.1.0/deps/polyscope/include/polyscope/camera_view.ipp +25 -0
  90. polyscope-2.1.0/deps/polyscope/include/polyscope/color_image_quantity.h +52 -0
  91. polyscope-2.1.0/deps/polyscope/include/polyscope/color_management.h +25 -0
  92. polyscope-2.1.0/deps/polyscope/include/polyscope/color_quantity.h +51 -0
  93. polyscope-2.1.0/deps/polyscope/include/polyscope/color_quantity.ipp +30 -0
  94. polyscope-2.1.0/deps/polyscope/include/polyscope/color_render_image_quantity.h +70 -0
  95. polyscope-2.1.0/deps/polyscope/include/polyscope/colors.h +5 -0
  96. polyscope-2.1.0/deps/polyscope/include/polyscope/combining_hash_functions.h +83 -0
  97. polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network.h +239 -0
  98. polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network.ipp +271 -0
  99. polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network_color_quantity.h +66 -0
  100. polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network_quantity.h +25 -0
  101. polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network_scalar_quantity.h +69 -0
  102. polyscope-2.1.0/deps/polyscope/include/polyscope/curve_network_vector_quantity.h +58 -0
  103. polyscope-2.1.0/deps/polyscope/include/polyscope/depth_render_image_quantity.h +63 -0
  104. polyscope-2.1.0/deps/polyscope/include/polyscope/disjoint_sets.h +56 -0
  105. polyscope-2.1.0/deps/polyscope/include/polyscope/file_helpers.h +11 -0
  106. polyscope-2.1.0/deps/polyscope/include/polyscope/floating_quantities.h +11 -0
  107. polyscope-2.1.0/deps/polyscope/include/polyscope/floating_quantity.h +22 -0
  108. polyscope-2.1.0/deps/polyscope/include/polyscope/floating_quantity_structure.h +112 -0
  109. polyscope-2.1.0/deps/polyscope/include/polyscope/floating_quantity_structure.ipp +74 -0
  110. polyscope-2.1.0/deps/polyscope/include/polyscope/fullscreen_artist.h +37 -0
  111. polyscope-2.1.0/deps/polyscope/include/polyscope/group.h +72 -0
  112. polyscope-2.1.0/deps/polyscope/include/polyscope/histogram.h +56 -0
  113. polyscope-2.1.0/deps/polyscope/include/polyscope/image_quantity.h +16 -0
  114. polyscope-2.1.0/deps/polyscope/include/polyscope/image_quantity_base.h +72 -0
  115. polyscope-2.1.0/deps/polyscope/include/polyscope/imgui_config.h +16 -0
  116. polyscope-2.1.0/deps/polyscope/include/polyscope/implicit_helpers.h +191 -0
  117. polyscope-2.1.0/deps/polyscope/include/polyscope/implicit_helpers.ipp +556 -0
  118. polyscope-2.1.0/deps/polyscope/include/polyscope/internal.h +29 -0
  119. polyscope-2.1.0/deps/polyscope/include/polyscope/messages.h +30 -0
  120. polyscope-2.1.0/deps/polyscope/include/polyscope/options.h +130 -0
  121. polyscope-2.1.0/deps/polyscope/include/polyscope/parameterization_quantity.h +96 -0
  122. polyscope-2.1.0/deps/polyscope/include/polyscope/parameterization_quantity.ipp +324 -0
  123. polyscope-2.1.0/deps/polyscope/include/polyscope/persistent_value.h +162 -0
  124. polyscope-2.1.0/deps/polyscope/include/polyscope/pick.h +51 -0
  125. polyscope-2.1.0/deps/polyscope/include/polyscope/pick.ipp +52 -0
  126. polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud.h +197 -0
  127. polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud.ipp +116 -0
  128. polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_color_quantity.h +35 -0
  129. polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_parameterization_quantity.h +35 -0
  130. polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_quantity.h +24 -0
  131. polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_scalar_quantity.h +36 -0
  132. polyscope-2.1.0/deps/polyscope/include/polyscope/point_cloud_vector_quantity.h +24 -0
  133. polyscope-2.1.0/deps/polyscope/include/polyscope/polyscope.h +181 -0
  134. polyscope-2.1.0/deps/polyscope/include/polyscope/quantity.h +84 -0
  135. polyscope-2.1.0/deps/polyscope/include/polyscope/quantity.ipp +72 -0
  136. polyscope-2.1.0/deps/polyscope/include/polyscope/ragged_nested_array.h +8 -0
  137. polyscope-2.1.0/deps/polyscope/include/polyscope/raw_color_alpha_render_image_quantity.h +68 -0
  138. polyscope-2.1.0/deps/polyscope/include/polyscope/raw_color_render_image_quantity.h +65 -0
  139. polyscope-2.1.0/deps/polyscope/include/polyscope/render/color_maps.h +87 -0
  140. polyscope-2.1.0/deps/polyscope/include/polyscope/render/colormap_defs.h +27 -0
  141. polyscope-2.1.0/deps/polyscope/include/polyscope/render/engine.h +682 -0
  142. polyscope-2.1.0/deps/polyscope/include/polyscope/render/engine.ipp +12 -0
  143. polyscope-2.1.0/deps/polyscope/include/polyscope/render/ground_plane.h +70 -0
  144. polyscope-2.1.0/deps/polyscope/include/polyscope/render/managed_buffer.h +298 -0
  145. polyscope-2.1.0/deps/polyscope/include/polyscope/render/managed_buffer.ipp +76 -0
  146. polyscope-2.1.0/deps/polyscope/include/polyscope/render/material_defs.h +43 -0
  147. polyscope-2.1.0/deps/polyscope/include/polyscope/render/materials.h +57 -0
  148. polyscope-2.1.0/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +425 -0
  149. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/gl_engine.h +483 -0
  150. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/gl_shaders.h +7 -0
  151. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/common.h +17 -0
  152. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +28 -0
  153. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/gizmo_shaders.h +22 -0
  154. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/grid_shaders.h +29 -0
  155. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/ground_plane_shaders.h +21 -0
  156. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +20 -0
  157. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/lighting_shaders.h +29 -0
  158. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/ribbon_shaders.h +21 -0
  159. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +49 -0
  160. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/sphere_shaders.h +31 -0
  161. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +41 -0
  162. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/texture_draw_shaders.h +55 -0
  163. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/vector_shaders.h +23 -0
  164. polyscope-2.1.0/deps/polyscope/include/polyscope/render/opengl/shaders/volume_mesh_shaders.h +24 -0
  165. polyscope-2.1.0/deps/polyscope/include/polyscope/render/shader_builder.h +15 -0
  166. polyscope-2.1.0/deps/polyscope/include/polyscope/render/templated_buffers.h +65 -0
  167. polyscope-2.1.0/deps/polyscope/include/polyscope/render_image_quantity_base.h +82 -0
  168. polyscope-2.1.0/deps/polyscope/include/polyscope/scalar_image_quantity.h +47 -0
  169. polyscope-2.1.0/deps/polyscope/include/polyscope/scalar_quantity.h +85 -0
  170. polyscope-2.1.0/deps/polyscope/include/polyscope/scalar_quantity.ipp +295 -0
  171. polyscope-2.1.0/deps/polyscope/include/polyscope/scalar_render_image_quantity.h +64 -0
  172. polyscope-2.1.0/deps/polyscope/include/polyscope/scaled_value.h +77 -0
  173. polyscope-2.1.0/deps/polyscope/include/polyscope/screenshot.h +23 -0
  174. polyscope-2.1.0/deps/polyscope/include/polyscope/simple_triangle_mesh.h +134 -0
  175. polyscope-2.1.0/deps/polyscope/include/polyscope/simple_triangle_mesh.ipp +54 -0
  176. polyscope-2.1.0/deps/polyscope/include/polyscope/slice_plane.h +117 -0
  177. polyscope-2.1.0/deps/polyscope/include/polyscope/standardize_data_array.h +1194 -0
  178. polyscope-2.1.0/deps/polyscope/include/polyscope/structure.h +292 -0
  179. polyscope-2.1.0/deps/polyscope/include/polyscope/structure.ipp +423 -0
  180. polyscope-2.1.0/deps/polyscope/include/polyscope/surface_color_quantity.h +78 -0
  181. polyscope-2.1.0/deps/polyscope/include/polyscope/surface_mesh.h +445 -0
  182. polyscope-2.1.0/deps/polyscope/include/polyscope/surface_mesh.ipp +429 -0
  183. polyscope-2.1.0/deps/polyscope/include/polyscope/surface_mesh_quantity.h +29 -0
  184. polyscope-2.1.0/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +98 -0
  185. polyscope-2.1.0/deps/polyscope/include/polyscope/surface_scalar_quantity.h +129 -0
  186. polyscope-2.1.0/deps/polyscope/include/polyscope/surface_vector_quantity.h +116 -0
  187. polyscope-2.1.0/deps/polyscope/include/polyscope/transformation_gizmo.h +91 -0
  188. polyscope-2.1.0/deps/polyscope/include/polyscope/types.h +61 -0
  189. polyscope-2.1.0/deps/polyscope/include/polyscope/utilities.h +179 -0
  190. polyscope-2.1.0/deps/polyscope/include/polyscope/vector_quantity.h +170 -0
  191. polyscope-2.1.0/deps/polyscope/include/polyscope/vector_quantity.ipp +327 -0
  192. polyscope-2.1.0/deps/polyscope/include/polyscope/view.h +156 -0
  193. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_grid.h +208 -0
  194. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_grid.ipp +189 -0
  195. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_grid_quantity.h +27 -0
  196. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_grid_scalar_quantity.h +113 -0
  197. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh.h +297 -0
  198. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh.ipp +172 -0
  199. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh_color_quantity.h +68 -0
  200. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh_quantity.h +30 -0
  201. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh_scalar_quantity.h +90 -0
  202. polyscope-2.1.0/deps/polyscope/include/polyscope/volume_mesh_vector_quantity.h +62 -0
  203. polyscope-2.1.0/deps/polyscope/include/polyscope/weak_handle.h +100 -0
  204. polyscope-2.1.0/deps/polyscope/include/polyscope/widget.h +26 -0
  205. polyscope-2.1.0/deps/polyscope/misc/format_all_macOS.sh +9 -0
  206. polyscope-2.1.0/deps/polyscope/src/CMakeLists.txt +344 -0
  207. polyscope-2.1.0/deps/polyscope/src/camera_parameters.cpp +191 -0
  208. polyscope-2.1.0/deps/polyscope/src/camera_view.cpp +467 -0
  209. polyscope-2.1.0/deps/polyscope/src/color_image_quantity.cpp +179 -0
  210. polyscope-2.1.0/deps/polyscope/src/color_management.cpp +84 -0
  211. polyscope-2.1.0/deps/polyscope/src/color_render_image_quantity.cpp +102 -0
  212. polyscope-2.1.0/deps/polyscope/src/curve_network.cpp +579 -0
  213. polyscope-2.1.0/deps/polyscope/src/curve_network_color_quantity.cpp +194 -0
  214. polyscope-2.1.0/deps/polyscope/src/curve_network_scalar_quantity.cpp +213 -0
  215. polyscope-2.1.0/deps/polyscope/src/curve_network_vector_quantity.cpp +103 -0
  216. polyscope-2.1.0/deps/polyscope/src/depth_render_image_quantity.cpp +112 -0
  217. polyscope-2.1.0/deps/polyscope/src/disjoint_sets.cpp +89 -0
  218. polyscope-2.1.0/deps/polyscope/src/file_helpers.cpp +53 -0
  219. polyscope-2.1.0/deps/polyscope/src/floating_quantity.cpp +32 -0
  220. polyscope-2.1.0/deps/polyscope/src/floating_quantity_structure.cpp +119 -0
  221. polyscope-2.1.0/deps/polyscope/src/fullscreen_artist.cpp +34 -0
  222. polyscope-2.1.0/deps/polyscope/src/group.cpp +319 -0
  223. polyscope-2.1.0/deps/polyscope/src/histogram.cpp +262 -0
  224. polyscope-2.1.0/deps/polyscope/src/image_quantity_base.cpp +133 -0
  225. polyscope-2.1.0/deps/polyscope/src/imgui_config.cpp +104 -0
  226. polyscope-2.1.0/deps/polyscope/src/internal.cpp +16 -0
  227. polyscope-2.1.0/deps/polyscope/src/marching_cubes.cpp +2 -0
  228. polyscope-2.1.0/deps/polyscope/src/messages.cpp +284 -0
  229. polyscope-2.1.0/deps/polyscope/src/options.cpp +65 -0
  230. polyscope-2.1.0/deps/polyscope/src/persistent_value.cpp +25 -0
  231. polyscope-2.1.0/deps/polyscope/src/pick.cpp +163 -0
  232. polyscope-2.1.0/deps/polyscope/src/point_cloud.cpp +464 -0
  233. polyscope-2.1.0/deps/polyscope/src/point_cloud_color_quantity.cpp +75 -0
  234. polyscope-2.1.0/deps/polyscope/src/point_cloud_parameterization_quantity.cpp +97 -0
  235. polyscope-2.1.0/deps/polyscope/src/point_cloud_scalar_quantity.cpp +92 -0
  236. polyscope-2.1.0/deps/polyscope/src/point_cloud_vector_quantity.cpp +51 -0
  237. polyscope-2.1.0/deps/polyscope/src/polyscope.cpp +1277 -0
  238. polyscope-2.1.0/deps/polyscope/src/quantity.cpp +40 -0
  239. polyscope-2.1.0/deps/polyscope/src/raw_color_alpha_render_image_quantity.cpp +106 -0
  240. polyscope-2.1.0/deps/polyscope/src/raw_color_render_image_quantity.cpp +91 -0
  241. polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_candy.cpp +44815 -0
  242. polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_ceramic.cpp +2093 -0
  243. polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_clay.cpp +41502 -0
  244. polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_flat.cpp +217 -0
  245. polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_jade.cpp +1763 -0
  246. polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_mud.cpp +1820 -0
  247. polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_normal.cpp +2957 -0
  248. polyscope-2.1.0/deps/polyscope/src/render/bindata/bindata_wax.cpp +46713 -0
  249. polyscope-2.1.0/deps/polyscope/src/render/bindata/concrete_seamless.cpp +5015 -0
  250. polyscope-2.1.0/deps/polyscope/src/render/color_maps.cpp +78 -0
  251. polyscope-2.1.0/deps/polyscope/src/render/engine.cpp +1168 -0
  252. polyscope-2.1.0/deps/polyscope/src/render/ground_plane.cpp +428 -0
  253. polyscope-2.1.0/deps/polyscope/src/render/initialize_backend.cpp +58 -0
  254. polyscope-2.1.0/deps/polyscope/src/render/managed_buffer.cpp +614 -0
  255. polyscope-2.1.0/deps/polyscope/src/render/materials.cpp +47 -0
  256. polyscope-2.1.0/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +2059 -0
  257. polyscope-2.1.0/deps/polyscope/src/render/opengl/gl_engine.cpp +2826 -0
  258. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/common.cpp +449 -0
  259. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +484 -0
  260. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/gizmo_shaders.cpp +285 -0
  261. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/grid_shaders.cpp +466 -0
  262. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/ground_plane_shaders.cpp +328 -0
  263. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +92 -0
  264. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +309 -0
  265. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/ribbon_shaders.cpp +209 -0
  266. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/rules.cpp +470 -0
  267. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/sphere_shaders.cpp +527 -0
  268. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +651 -0
  269. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/texture_draw_shaders.cpp +795 -0
  270. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/vector_shaders.cpp +338 -0
  271. polyscope-2.1.0/deps/polyscope/src/render/opengl/shaders/volume_mesh_shaders.cpp +396 -0
  272. polyscope-2.1.0/deps/polyscope/src/render/shader_builder.cpp +179 -0
  273. polyscope-2.1.0/deps/polyscope/src/render/templated_buffers.cpp +380 -0
  274. polyscope-2.1.0/deps/polyscope/src/render_image_quantity_base.cpp +117 -0
  275. polyscope-2.1.0/deps/polyscope/src/scalar_image_quantity.cpp +173 -0
  276. polyscope-2.1.0/deps/polyscope/src/scalar_render_image_quantity.cpp +123 -0
  277. polyscope-2.1.0/deps/polyscope/src/screenshot.cpp +124 -0
  278. polyscope-2.1.0/deps/polyscope/src/simple_triangle_mesh.cpp +312 -0
  279. polyscope-2.1.0/deps/polyscope/src/slice_plane.cpp +447 -0
  280. polyscope-2.1.0/deps/polyscope/src/state.cpp +24 -0
  281. polyscope-2.1.0/deps/polyscope/src/structure.cpp +343 -0
  282. polyscope-2.1.0/deps/polyscope/src/surface_color_quantity.cpp +156 -0
  283. polyscope-2.1.0/deps/polyscope/src/surface_mesh.cpp +1718 -0
  284. polyscope-2.1.0/deps/polyscope/src/surface_parameterization_quantity.cpp +266 -0
  285. polyscope-2.1.0/deps/polyscope/src/surface_scalar_quantity.cpp +310 -0
  286. polyscope-2.1.0/deps/polyscope/src/surface_vector_quantity.cpp +284 -0
  287. polyscope-2.1.0/deps/polyscope/src/transformation_gizmo.cpp +629 -0
  288. polyscope-2.1.0/deps/polyscope/src/utilities.cpp +135 -0
  289. polyscope-2.1.0/deps/polyscope/src/view.cpp +1075 -0
  290. polyscope-2.1.0/deps/polyscope/src/volume_grid.cpp +557 -0
  291. polyscope-2.1.0/deps/polyscope/src/volume_grid_scalar_quantity.cpp +388 -0
  292. polyscope-2.1.0/deps/polyscope/src/volume_mesh.cpp +1075 -0
  293. polyscope-2.1.0/deps/polyscope/src/volume_mesh_color_quantity.cpp +195 -0
  294. polyscope-2.1.0/deps/polyscope/src/volume_mesh_scalar_quantity.cpp +362 -0
  295. polyscope-2.1.0/deps/polyscope/src/volume_mesh_vector_quantity.cpp +99 -0
  296. polyscope-2.1.0/deps/polyscope/src/weak_handle.cpp +18 -0
  297. polyscope-2.1.0/deps/polyscope/src/widget.cpp +17 -0
  298. polyscope-2.1.0/deps/polyscope/test/CMakeLists.txt +124 -0
  299. polyscope-2.1.0/deps/polyscope/test/include/polyscope_test.h +171 -0
  300. polyscope-2.1.0/deps/polyscope/test/src/array_adaptors_test.cpp +392 -0
  301. polyscope-2.1.0/deps/polyscope/test/src/basics_test.cpp +129 -0
  302. polyscope-2.1.0/deps/polyscope/test/src/camera_view_test.cpp +160 -0
  303. polyscope-2.1.0/deps/polyscope/test/src/combo_test.cpp +180 -0
  304. polyscope-2.1.0/deps/polyscope/test/src/curve_network_test.cpp +125 -0
  305. polyscope-2.1.0/deps/polyscope/test/src/floating_test.cpp +230 -0
  306. polyscope-2.1.0/deps/polyscope/test/src/group_test.cpp +263 -0
  307. polyscope-2.1.0/deps/polyscope/test/src/interop_and_serialization_test.cpp +35 -0
  308. polyscope-2.1.0/deps/polyscope/test/src/main_test.cpp +45 -0
  309. polyscope-2.1.0/deps/polyscope/test/src/misc_test.cpp +43 -0
  310. polyscope-2.1.0/deps/polyscope/test/src/point_cloud_test.cpp +183 -0
  311. polyscope-2.1.0/deps/polyscope/test/src/surface_mesh_test.cpp +540 -0
  312. polyscope-2.1.0/deps/polyscope/test/src/volume_grid_test.cpp +180 -0
  313. polyscope-2.1.0/deps/polyscope/test/src/volume_mesh_test.cpp +230 -0
  314. polyscope-2.1.0/setup.py +113 -0
  315. polyscope-2.1.0/src/cpp/camera_view.cpp +49 -0
  316. polyscope-2.1.0/src/cpp/core.cpp +530 -0
  317. polyscope-2.1.0/src/cpp/curve_network.cpp +96 -0
  318. polyscope-2.1.0/src/cpp/floating_quantities.cpp +87 -0
  319. polyscope-2.1.0/src/cpp/imgui.cpp +2229 -0
  320. polyscope-2.1.0/src/cpp/implicit_helpers.cpp +155 -0
  321. polyscope-2.1.0/src/cpp/managed_buffer.cpp +208 -0
  322. polyscope-2.1.0/src/cpp/point_cloud.cpp +82 -0
  323. polyscope-2.1.0/src/cpp/surface_mesh.cpp +186 -0
  324. polyscope-2.1.0/src/cpp/utils.h +248 -0
  325. polyscope-2.1.0/src/cpp/volume_grid.cpp +129 -0
  326. polyscope-2.1.0/src/cpp/volume_mesh.cpp +97 -0
  327. polyscope-2.1.0/src/polyscope/__init__.py +15 -0
  328. polyscope-2.1.0/src/polyscope/camera_view.py +104 -0
  329. polyscope-2.1.0/src/polyscope/common.py +220 -0
  330. polyscope-2.1.0/src/polyscope/core.py +797 -0
  331. polyscope-2.1.0/src/polyscope/curve_network.py +209 -0
  332. polyscope-2.1.0/src/polyscope/device_interop.py +431 -0
  333. polyscope-2.1.0/src/polyscope/floating_quantities.py +226 -0
  334. polyscope-2.1.0/src/polyscope/global_floating_quantity_structure.py +13 -0
  335. polyscope-2.1.0/src/polyscope/implicit_helpers.py +94 -0
  336. polyscope-2.1.0/src/polyscope/managed_buffer.py +144 -0
  337. polyscope-2.1.0/src/polyscope/point_cloud.py +171 -0
  338. polyscope-2.1.0/src/polyscope/structure.py +208 -0
  339. polyscope-2.1.0/src/polyscope/surface_mesh.py +409 -0
  340. polyscope-2.1.0/src/polyscope/volume_grid.py +216 -0
  341. polyscope-2.1.0/src/polyscope/volume_mesh.py +230 -0
  342. polyscope-2.1.0/src/polyscope.egg-info/PKG-INFO +103 -0
  343. polyscope-2.1.0/src/polyscope.egg-info/SOURCES.txt +1462 -0
  344. polyscope-2.1.0/src/polyscope_bindings/imgui.pyi +1242 -0
  345. polyscope-1.3.4/CMakeLists.txt +0 -27
  346. polyscope-1.3.4/PKG-INFO +0 -100
  347. polyscope-1.3.4/README.md +0 -43
  348. polyscope-1.3.4/deps/polyscope/.github/workflows/linux.yml +0 -54
  349. polyscope-1.3.4/deps/polyscope/.gitignore +0 -46
  350. polyscope-1.3.4/deps/polyscope/deps/CMakeLists.txt +0 -23
  351. polyscope-1.3.4/deps/polyscope/deps/glad/src/CMakeLists.txt +0 -18
  352. polyscope-1.3.4/deps/polyscope/deps/glfw/.github/workflows/build.yml +0 -116
  353. polyscope-1.3.4/deps/polyscope/deps/glfw/CMakeLists.txt +0 -386
  354. polyscope-1.3.4/deps/polyscope/deps/glfw/CONTRIBUTORS.md +0 -226
  355. polyscope-1.3.4/deps/polyscope/deps/glfw/README.md +0 -151
  356. polyscope-1.3.4/deps/polyscope/deps/glfw/deps/glad/vk_platform.h +0 -92
  357. polyscope-1.3.4/deps/polyscope/deps/glfw/deps/glad/vulkan.h +0 -3480
  358. polyscope-1.3.4/deps/polyscope/deps/glfw/deps/glad_vulkan.c +0 -593
  359. polyscope-1.3.4/deps/polyscope/deps/glfw/deps/stb_image_write.h +0 -1048
  360. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/CONTRIBUTING.md +0 -391
  361. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/Doxyfile.in +0 -1828
  362. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/build.dox +0 -348
  363. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/compat.dox +0 -285
  364. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/compile.dox +0 -365
  365. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/context.dox +0 -346
  366. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/input.dox +0 -950
  367. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/intro.dox +0 -454
  368. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/monitor.dox +0 -268
  369. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/moving.dox +0 -513
  370. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/news.dox +0 -863
  371. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/quick.dox +0 -365
  372. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/vulkan.dox +0 -235
  373. polyscope-1.3.4/deps/polyscope/deps/glfw/docs/window.dox +0 -1412
  374. polyscope-1.3.4/deps/polyscope/deps/glfw/include/GLFW/glfw3.h +0 -5909
  375. polyscope-1.3.4/deps/polyscope/deps/glfw/include/GLFW/glfw3native.h +0 -594
  376. polyscope-1.3.4/deps/polyscope/deps/glfw/src/CMakeLists.txt +0 -195
  377. polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_init.m +0 -623
  378. polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_joystick.m +0 -487
  379. polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_monitor.m +0 -631
  380. polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_platform.h +0 -209
  381. polyscope-1.3.4/deps/polyscope/deps/glfw/src/cocoa_window.m +0 -1848
  382. polyscope-1.3.4/deps/polyscope/deps/glfw/src/context.c +0 -756
  383. polyscope-1.3.4/deps/polyscope/deps/glfw/src/egl_context.c +0 -790
  384. polyscope-1.3.4/deps/polyscope/deps/glfw/src/egl_context.h +0 -215
  385. polyscope-1.3.4/deps/polyscope/deps/glfw/src/glfw3.pc.in +0 -13
  386. polyscope-1.3.4/deps/polyscope/deps/glfw/src/glfw_config.h.in +0 -60
  387. polyscope-1.3.4/deps/polyscope/deps/glfw/src/glx_context.c +0 -699
  388. polyscope-1.3.4/deps/polyscope/deps/glfw/src/glx_context.h +0 -179
  389. polyscope-1.3.4/deps/polyscope/deps/glfw/src/init.c +0 -326
  390. polyscope-1.3.4/deps/polyscope/deps/glfw/src/input.c +0 -1367
  391. polyscope-1.3.4/deps/polyscope/deps/glfw/src/internal.h +0 -780
  392. polyscope-1.3.4/deps/polyscope/deps/glfw/src/linux_joystick.c +0 -433
  393. polyscope-1.3.4/deps/polyscope/deps/glfw/src/linux_joystick.h +0 -63
  394. polyscope-1.3.4/deps/polyscope/deps/glfw/src/monitor.c +0 -542
  395. polyscope-1.3.4/deps/polyscope/deps/glfw/src/nsgl_context.h +0 -64
  396. polyscope-1.3.4/deps/polyscope/deps/glfw/src/nsgl_context.m +0 -376
  397. polyscope-1.3.4/deps/polyscope/deps/glfw/src/null_window.c +0 -332
  398. polyscope-1.3.4/deps/polyscope/deps/glfw/src/osmesa_context.c +0 -384
  399. polyscope-1.3.4/deps/polyscope/deps/glfw/src/vulkan.c +0 -332
  400. polyscope-1.3.4/deps/polyscope/deps/glfw/src/wgl_context.c +0 -798
  401. polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_init.c +0 -623
  402. polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_joystick.c +0 -755
  403. polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_monitor.c +0 -548
  404. polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_platform.h +0 -452
  405. polyscope-1.3.4/deps/polyscope/deps/glfw/src/win32_window.c +0 -2295
  406. polyscope-1.3.4/deps/polyscope/deps/glfw/src/window.c +0 -1104
  407. polyscope-1.3.4/deps/polyscope/deps/glfw/src/wl_init.c +0 -1327
  408. polyscope-1.3.4/deps/polyscope/deps/glfw/src/wl_monitor.c +0 -231
  409. polyscope-1.3.4/deps/polyscope/deps/glfw/src/wl_platform.h +0 -355
  410. polyscope-1.3.4/deps/polyscope/deps/glfw/src/wl_window.c +0 -1903
  411. polyscope-1.3.4/deps/polyscope/deps/glfw/src/x11_init.c +0 -1211
  412. polyscope-1.3.4/deps/polyscope/deps/glfw/src/x11_platform.h +0 -447
  413. polyscope-1.3.4/deps/polyscope/deps/glfw/src/x11_window.c +0 -3194
  414. polyscope-1.3.4/deps/polyscope/deps/glfw/src/xkb_unicode.c +0 -942
  415. polyscope-1.3.4/deps/polyscope/deps/glfw/src/xkb_unicode.h +0 -28
  416. polyscope-1.3.4/deps/polyscope/deps/glfw/tests/events.c +0 -650
  417. polyscope-1.3.4/deps/polyscope/deps/glfw/tests/gamma.c +0 -179
  418. polyscope-1.3.4/deps/polyscope/deps/glfw/tests/glfwinfo.c +0 -920
  419. polyscope-1.3.4/deps/polyscope/deps/glfw/tests/iconify.c +0 -297
  420. polyscope-1.3.4/deps/polyscope/deps/glfw/tests/triangle-vulkan.c +0 -2133
  421. polyscope-1.3.4/deps/polyscope/examples/demo-app/CMakeLists.txt +0 -83
  422. polyscope-1.3.4/deps/polyscope/examples/demo-app/demo_app.cpp +0 -606
  423. polyscope-1.3.4/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.h +0 -7
  424. polyscope-1.3.4/deps/polyscope/include/polyscope/affine_remapper.h +0 -77
  425. polyscope-1.3.4/deps/polyscope/include/polyscope/affine_remapper.ipp +0 -189
  426. polyscope-1.3.4/deps/polyscope/include/polyscope/camera_parameters.h +0 -36
  427. polyscope-1.3.4/deps/polyscope/include/polyscope/color_management.h +0 -24
  428. polyscope-1.3.4/deps/polyscope/include/polyscope/colors.h +0 -7
  429. polyscope-1.3.4/deps/polyscope/include/polyscope/combining_hash_functions.h +0 -82
  430. polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network.h +0 -202
  431. polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network.ipp +0 -218
  432. polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network_color_quantity.h +0 -64
  433. polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network_quantity.h +0 -24
  434. polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network_scalar_quantity.h +0 -62
  435. polyscope-1.3.4/deps/polyscope/include/polyscope/curve_network_vector_quantity.h +0 -81
  436. polyscope-1.3.4/deps/polyscope/include/polyscope/disjoint_sets.h +0 -55
  437. polyscope-1.3.4/deps/polyscope/include/polyscope/file_helpers.h +0 -10
  438. polyscope-1.3.4/deps/polyscope/include/polyscope/histogram.h +0 -67
  439. polyscope-1.3.4/deps/polyscope/include/polyscope/image_scalar_artist.h +0 -64
  440. polyscope-1.3.4/deps/polyscope/include/polyscope/imgui_config.h +0 -15
  441. polyscope-1.3.4/deps/polyscope/include/polyscope/internal.h +0 -16
  442. polyscope-1.3.4/deps/polyscope/include/polyscope/messages.h +0 -26
  443. polyscope-1.3.4/deps/polyscope/include/polyscope/options.h +0 -109
  444. polyscope-1.3.4/deps/polyscope/include/polyscope/persistent_value.h +0 -145
  445. polyscope-1.3.4/deps/polyscope/include/polyscope/pick.h +0 -50
  446. polyscope-1.3.4/deps/polyscope/include/polyscope/pick.ipp +0 -50
  447. polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud.h +0 -185
  448. polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud.ipp +0 -114
  449. polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_color_quantity.h +0 -33
  450. polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_parameterization_quantity.h +0 -75
  451. polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_quantity.h +0 -23
  452. polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_scalar_quantity.h +0 -37
  453. polyscope-1.3.4/deps/polyscope/include/polyscope/point_cloud_vector_quantity.h +0 -55
  454. polyscope-1.3.4/deps/polyscope/include/polyscope/polyscope.h +0 -156
  455. polyscope-1.3.4/deps/polyscope/include/polyscope/quantity.h +0 -56
  456. polyscope-1.3.4/deps/polyscope/include/polyscope/quantity.ipp +0 -97
  457. polyscope-1.3.4/deps/polyscope/include/polyscope/render/color_maps.h +0 -86
  458. polyscope-1.3.4/deps/polyscope/include/polyscope/render/colormap_defs.h +0 -26
  459. polyscope-1.3.4/deps/polyscope/include/polyscope/render/engine.h +0 -527
  460. polyscope-1.3.4/deps/polyscope/include/polyscope/render/engine.ipp +0 -13
  461. polyscope-1.3.4/deps/polyscope/include/polyscope/render/ground_plane.h +0 -69
  462. polyscope-1.3.4/deps/polyscope/include/polyscope/render/material_defs.h +0 -42
  463. polyscope-1.3.4/deps/polyscope/include/polyscope/render/materials.h +0 -52
  464. polyscope-1.3.4/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +0 -281
  465. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/gl_engine.h +0 -338
  466. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/gl_shaders.h +0 -5
  467. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/common.h +0 -16
  468. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +0 -25
  469. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/gizmo_shaders.h +0 -20
  470. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/ground_plane_shaders.h +0 -19
  471. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +0 -18
  472. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/lighting_shaders.h +0 -25
  473. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/ribbon_shaders.h +0 -19
  474. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +0 -39
  475. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/sphere_shaders.h +0 -29
  476. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +0 -29
  477. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/texture_draw_shaders.h +0 -32
  478. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/vector_shaders.h +0 -20
  479. polyscope-1.3.4/deps/polyscope/include/polyscope/render/opengl/shaders/volume_mesh_shaders.h +0 -22
  480. polyscope-1.3.4/deps/polyscope/include/polyscope/render/shader_builder.h +0 -13
  481. polyscope-1.3.4/deps/polyscope/include/polyscope/ribbon_artist.h +0 -52
  482. polyscope-1.3.4/deps/polyscope/include/polyscope/scalar_quantity.h +0 -70
  483. polyscope-1.3.4/deps/polyscope/include/polyscope/scalar_quantity.ipp +0 -204
  484. polyscope-1.3.4/deps/polyscope/include/polyscope/scaled_value.h +0 -69
  485. polyscope-1.3.4/deps/polyscope/include/polyscope/screenshot.h +0 -22
  486. polyscope-1.3.4/deps/polyscope/include/polyscope/slice_plane.h +0 -109
  487. polyscope-1.3.4/deps/polyscope/include/polyscope/standardize_data_array.h +0 -1039
  488. polyscope-1.3.4/deps/polyscope/include/polyscope/structure.h +0 -175
  489. polyscope-1.3.4/deps/polyscope/include/polyscope/structure.ipp +0 -135
  490. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_color_quantity.h +0 -66
  491. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_count_quantity.h +0 -96
  492. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_distance_quantity.h +0 -61
  493. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_graph_quantity.h +0 -43
  494. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_input_curve_quantity.h +0 -44
  495. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_mesh.h +0 -404
  496. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_mesh.ipp +0 -484
  497. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_mesh_io.h +0 -17
  498. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_mesh_quantity.h +0 -27
  499. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_parameterization_enums.h +0 -9
  500. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +0 -124
  501. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_scalar_quantity.h +0 -100
  502. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_selection_quantity.h +0 -127
  503. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_subset_quantity.h +0 -42
  504. polyscope-1.3.4/deps/polyscope/include/polyscope/surface_vector_quantity.h +0 -168
  505. polyscope-1.3.4/deps/polyscope/include/polyscope/trace_vector_field.h +0 -21
  506. polyscope-1.3.4/deps/polyscope/include/polyscope/transformation_gizmo.h +0 -88
  507. polyscope-1.3.4/deps/polyscope/include/polyscope/types.h +0 -22
  508. polyscope-1.3.4/deps/polyscope/include/polyscope/utilities.h +0 -155
  509. polyscope-1.3.4/deps/polyscope/include/polyscope/vector_artist.h +0 -68
  510. polyscope-1.3.4/deps/polyscope/include/polyscope/view.h +0 -120
  511. polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh.h +0 -265
  512. polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh.ipp +0 -170
  513. polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh_color_quantity.h +0 -71
  514. polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh_quantity.h +0 -30
  515. polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh_scalar_quantity.h +0 -87
  516. polyscope-1.3.4/deps/polyscope/include/polyscope/volume_mesh_vector_quantity.h +0 -90
  517. polyscope-1.3.4/deps/polyscope/include/polyscope/widget.h +0 -22
  518. polyscope-1.3.4/deps/polyscope/misc/file2c/file2cpp +0 -0
  519. polyscope-1.3.4/deps/polyscope/misc/material_images/bindata_mat_wax.cpp +0 -4018
  520. polyscope-1.3.4/deps/polyscope/src/CMakeLists.txt +0 -297
  521. polyscope-1.3.4/deps/polyscope/src/camera_parameters.cpp +0 -52
  522. polyscope-1.3.4/deps/polyscope/src/color_management.cpp +0 -81
  523. polyscope-1.3.4/deps/polyscope/src/curve_network.cpp +0 -449
  524. polyscope-1.3.4/deps/polyscope/src/curve_network_color_quantity.cpp +0 -158
  525. polyscope-1.3.4/deps/polyscope/src/curve_network_scalar_quantity.cpp +0 -177
  526. polyscope-1.3.4/deps/polyscope/src/curve_network_vector_quantity.cpp +0 -140
  527. polyscope-1.3.4/deps/polyscope/src/disjoint_sets.cpp +0 -88
  528. polyscope-1.3.4/deps/polyscope/src/file_helpers.cpp +0 -52
  529. polyscope-1.3.4/deps/polyscope/src/histogram.cpp +0 -313
  530. polyscope-1.3.4/deps/polyscope/src/image_scalar_artist.cpp +0 -148
  531. polyscope-1.3.4/deps/polyscope/src/imgui_config.cpp +0 -103
  532. polyscope-1.3.4/deps/polyscope/src/internal.cpp +0 -10
  533. polyscope-1.3.4/deps/polyscope/src/messages.cpp +0 -277
  534. polyscope-1.3.4/deps/polyscope/src/options.cpp +0 -59
  535. polyscope-1.3.4/deps/polyscope/src/persistent_value.cpp +0 -22
  536. polyscope-1.3.4/deps/polyscope/src/pick.cpp +0 -163
  537. polyscope-1.3.4/deps/polyscope/src/point_cloud.cpp +0 -456
  538. polyscope-1.3.4/deps/polyscope/src/point_cloud_color_quantity.cpp +0 -72
  539. polyscope-1.3.4/deps/polyscope/src/point_cloud_parameterization_quantity.cpp +0 -270
  540. polyscope-1.3.4/deps/polyscope/src/point_cloud_scalar_quantity.cpp +0 -87
  541. polyscope-1.3.4/deps/polyscope/src/point_cloud_vector_quantity.cpp +0 -80
  542. polyscope-1.3.4/deps/polyscope/src/polyscope.cpp +0 -1102
  543. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_candy.cpp +0 -44815
  544. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_ceramic.cpp +0 -2093
  545. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_clay.cpp +0 -41502
  546. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_flat.cpp +0 -217
  547. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_jade.cpp +0 -1763
  548. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_mat_wax.cpp +0 -4025
  549. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_mud.cpp +0 -1820
  550. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_normal.cpp +0 -2957
  551. polyscope-1.3.4/deps/polyscope/src/render/bindata/bindata_wax.cpp +0 -46713
  552. polyscope-1.3.4/deps/polyscope/src/render/bindata/concrete_seamless.cpp +0 -5015
  553. polyscope-1.3.4/deps/polyscope/src/render/color_maps.cpp +0 -77
  554. polyscope-1.3.4/deps/polyscope/src/render/engine.cpp +0 -995
  555. polyscope-1.3.4/deps/polyscope/src/render/ground_plane.cpp +0 -429
  556. polyscope-1.3.4/deps/polyscope/src/render/initialize_backend.cpp +0 -51
  557. polyscope-1.3.4/deps/polyscope/src/render/materials.cpp +0 -47
  558. polyscope-1.3.4/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +0 -1495
  559. polyscope-1.3.4/deps/polyscope/src/render/opengl/gl_engine.cpp +0 -2183
  560. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/common.cpp +0 -341
  561. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +0 -429
  562. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/gizmo_shaders.cpp +0 -283
  563. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/ground_plane_shaders.cpp +0 -318
  564. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +0 -91
  565. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +0 -251
  566. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/ribbon_shaders.cpp +0 -207
  567. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/rules.cpp +0 -340
  568. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/sphere_shaders.cpp +0 -523
  569. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +0 -444
  570. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/texture_draw_shaders.cpp +0 -406
  571. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/vector_shaders.cpp +0 -280
  572. polyscope-1.3.4/deps/polyscope/src/render/opengl/shaders/volume_mesh_shaders.cpp +0 -414
  573. polyscope-1.3.4/deps/polyscope/src/render/shader_builder.cpp +0 -175
  574. polyscope-1.3.4/deps/polyscope/src/ribbon_artist.cpp +0 -191
  575. polyscope-1.3.4/deps/polyscope/src/screenshot.cpp +0 -123
  576. polyscope-1.3.4/deps/polyscope/src/slice_plane.cpp +0 -442
  577. polyscope-1.3.4/deps/polyscope/src/state.cpp +0 -22
  578. polyscope-1.3.4/deps/polyscope/src/structure.cpp +0 -335
  579. polyscope-1.3.4/deps/polyscope/src/surface_color_quantity.cpp +0 -140
  580. polyscope-1.3.4/deps/polyscope/src/surface_count_quantity.cpp +0 -289
  581. polyscope-1.3.4/deps/polyscope/src/surface_distance_quantity.cpp +0 -190
  582. polyscope-1.3.4/deps/polyscope/src/surface_graph_quantity.cpp +0 -134
  583. polyscope-1.3.4/deps/polyscope/src/surface_input_curve_quantity.cpp_ +0 -270
  584. polyscope-1.3.4/deps/polyscope/src/surface_mesh.cpp +0 -1405
  585. polyscope-1.3.4/deps/polyscope/src/surface_mesh_io.cpp +0 -147
  586. polyscope-1.3.4/deps/polyscope/src/surface_parameterization_quantity.cpp +0 -359
  587. polyscope-1.3.4/deps/polyscope/src/surface_scalar_quantity.cpp +0 -321
  588. polyscope-1.3.4/deps/polyscope/src/surface_selection_quantity.cpp +0 -519
  589. polyscope-1.3.4/deps/polyscope/src/surface_subset_quantity.cpp +0 -93
  590. polyscope-1.3.4/deps/polyscope/src/surface_vector_quantity.cpp +0 -520
  591. polyscope-1.3.4/deps/polyscope/src/trace_vector_field.cpp +0 -419
  592. polyscope-1.3.4/deps/polyscope/src/transformation_gizmo.cpp +0 -609
  593. polyscope-1.3.4/deps/polyscope/src/utilities.cpp +0 -119
  594. polyscope-1.3.4/deps/polyscope/src/vector_artist.cpp +0 -137
  595. polyscope-1.3.4/deps/polyscope/src/view.cpp +0 -807
  596. polyscope-1.3.4/deps/polyscope/src/volume_mesh.cpp +0 -1074
  597. polyscope-1.3.4/deps/polyscope/src/volume_mesh_color_quantity.cpp +0 -230
  598. polyscope-1.3.4/deps/polyscope/src/volume_mesh_scalar_quantity.cpp +0 -380
  599. polyscope-1.3.4/deps/polyscope/src/volume_mesh_vector_quantity.cpp +0 -126
  600. polyscope-1.3.4/deps/polyscope/src/widget.cpp +0 -20
  601. polyscope-1.3.4/deps/polyscope/test/CMakeLists.txt +0 -112
  602. polyscope-1.3.4/deps/polyscope/test/include/polyscope_test.h +0 -7
  603. polyscope-1.3.4/deps/polyscope/test/src/array_adaptors_test.cpp +0 -357
  604. polyscope-1.3.4/deps/polyscope/test/src/basics_test.cpp +0 -1136
  605. polyscope-1.3.4/deps/polyscope/test/src/main_test.cpp +0 -43
  606. polyscope-1.3.4/setup.py +0 -113
  607. polyscope-1.3.4/src/cpp/core.cpp +0 -311
  608. polyscope-1.3.4/src/cpp/curve_network.cpp +0 -103
  609. polyscope-1.3.4/src/cpp/imgui.cpp +0 -1886
  610. polyscope-1.3.4/src/cpp/point_cloud.cpp +0 -89
  611. polyscope-1.3.4/src/cpp/surface_mesh.cpp +0 -179
  612. polyscope-1.3.4/src/cpp/utils.h +0 -118
  613. polyscope-1.3.4/src/cpp/volume_mesh.cpp +0 -103
  614. polyscope-1.3.4/src/polyscope/__init__.py +0 -5
  615. polyscope-1.3.4/src/polyscope/core.py +0 -437
  616. polyscope-1.3.4/src/polyscope/curve_network.py +0 -267
  617. polyscope-1.3.4/src/polyscope/point_cloud.py +0 -231
  618. polyscope-1.3.4/src/polyscope/surface_mesh.py +0 -487
  619. polyscope-1.3.4/src/polyscope/volume_mesh.py +0 -285
  620. polyscope-1.3.4/src/polyscope.egg-info/PKG-INFO +0 -100
  621. polyscope-1.3.4/src/polyscope.egg-info/SOURCES.txt +0 -1396
  622. polyscope-1.3.4/src/polyscope_bindings/imgui.pyi +0 -1217
  623. {polyscope-1.3.4 → polyscope-2.1.0}/LICENSE +0 -0
  624. {polyscope-1.3.4 → polyscope-2.1.0}/MANIFEST.in +0 -0
  625. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.BSD +0 -0
  626. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.GPL +0 -0
  627. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.LGPL +0 -0
  628. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.MINPACK +0 -0
  629. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.MPL2 +0 -0
  630. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/COPYING.README +0 -0
  631. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Cholesky +0 -0
  632. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/CholmodSupport +0 -0
  633. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Core +0 -0
  634. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Dense +0 -0
  635. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Eigen +0 -0
  636. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Eigenvalues +0 -0
  637. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Geometry +0 -0
  638. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Householder +0 -0
  639. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/IterativeLinearSolvers +0 -0
  640. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Jacobi +0 -0
  641. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/KLUSupport +0 -0
  642. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/LU +0 -0
  643. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/MetisSupport +0 -0
  644. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/OrderingMethods +0 -0
  645. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/PaStiXSupport +0 -0
  646. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/PardisoSupport +0 -0
  647. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/QR +0 -0
  648. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/QtAlignedMalloc +0 -0
  649. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SPQRSupport +0 -0
  650. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SVD +0 -0
  651. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/Sparse +0 -0
  652. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SparseCholesky +0 -0
  653. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SparseCore +0 -0
  654. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SparseLU +0 -0
  655. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SparseQR +0 -0
  656. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/StdDeque +0 -0
  657. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/StdList +0 -0
  658. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/StdVector +0 -0
  659. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/SuperLUSupport +0 -0
  660. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/UmfPackSupport +0 -0
  661. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Cholesky/LDLT.h +0 -0
  662. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Cholesky/LLT.h +0 -0
  663. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
  664. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
  665. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ArithmeticSequence.h +0 -0
  666. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Array.h +0 -0
  667. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ArrayBase.h +0 -0
  668. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ArrayWrapper.h +0 -0
  669. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Assign.h +0 -0
  670. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/AssignEvaluator.h +0 -0
  671. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Assign_MKL.h +0 -0
  672. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/BandMatrix.h +0 -0
  673. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Block.h +0 -0
  674. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/BooleanRedux.h +0 -0
  675. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CommaInitializer.h +0 -0
  676. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ConditionEstimator.h +0 -0
  677. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CoreEvaluators.h +0 -0
  678. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CoreIterators.h +0 -0
  679. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseBinaryOp.h +0 -0
  680. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseNullaryOp.h +0 -0
  681. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseTernaryOp.h +0 -0
  682. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseUnaryOp.h +0 -0
  683. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/CwiseUnaryView.h +0 -0
  684. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DenseBase.h +0 -0
  685. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DenseCoeffsBase.h +0 -0
  686. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DenseStorage.h +0 -0
  687. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Diagonal.h +0 -0
  688. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DiagonalMatrix.h +0 -0
  689. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/DiagonalProduct.h +0 -0
  690. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Dot.h +0 -0
  691. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/EigenBase.h +0 -0
  692. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ForceAlignedAccess.h +0 -0
  693. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Fuzzy.h +0 -0
  694. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/GeneralProduct.h +0 -0
  695. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/GenericPacketMath.h +0 -0
  696. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/GlobalFunctions.h +0 -0
  697. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/IO.h +0 -0
  698. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/IndexedView.h +0 -0
  699. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Inverse.h +0 -0
  700. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Map.h +0 -0
  701. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/MapBase.h +0 -0
  702. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/MathFunctions.h +0 -0
  703. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/MathFunctionsImpl.h +0 -0
  704. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Matrix.h +0 -0
  705. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/MatrixBase.h +0 -0
  706. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/NestByValue.h +0 -0
  707. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/NoAlias.h +0 -0
  708. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/NumTraits.h +0 -0
  709. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
  710. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/PermutationMatrix.h +0 -0
  711. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/PlainObjectBase.h +0 -0
  712. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Product.h +0 -0
  713. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ProductEvaluators.h +0 -0
  714. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Random.h +0 -0
  715. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Redux.h +0 -0
  716. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Ref.h +0 -0
  717. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Replicate.h +0 -0
  718. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Reshaped.h +0 -0
  719. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/ReturnByValue.h +0 -0
  720. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Reverse.h +0 -0
  721. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Select.h +0 -0
  722. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/SelfAdjointView.h +0 -0
  723. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
  724. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Solve.h +0 -0
  725. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/SolveTriangular.h +0 -0
  726. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/SolverBase.h +0 -0
  727. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/StableNorm.h +0 -0
  728. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/StlIterators.h +0 -0
  729. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Stride.h +0 -0
  730. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Swap.h +0 -0
  731. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Transpose.h +0 -0
  732. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Transpositions.h +0 -0
  733. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/TriangularMatrix.h +0 -0
  734. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/VectorBlock.h +0 -0
  735. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/VectorwiseOp.h +0 -0
  736. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/Visitor.h +0 -0
  737. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX/Complex.h +0 -0
  738. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
  739. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
  740. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
  741. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
  742. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
  743. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
  744. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
  745. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
  746. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
  747. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
  748. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
  749. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
  750. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
  751. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
  752. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/Half.h +0 -0
  753. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/Settings.h +0 -0
  754. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
  755. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
  756. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
  757. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
  758. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
  759. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/MSA/Complex.h +0 -0
  760. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
  761. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
  762. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/NEON/Complex.h +0 -0
  763. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
  764. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
  765. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
  766. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SSE/Complex.h +0 -0
  767. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
  768. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
  769. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
  770. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
  771. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
  772. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
  773. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
  774. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
  775. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
  776. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
  777. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
  778. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
  779. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
  780. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
  781. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/StlFunctors.h +0 -0
  782. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
  783. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
  784. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
  785. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
  786. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
  787. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
  788. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
  789. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
  790. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
  791. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/Parallelizer.h +0 -0
  792. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
  793. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
  794. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
  795. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
  796. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
  797. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
  798. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
  799. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
  800. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
  801. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
  802. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
  803. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
  804. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
  805. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/BlasUtil.h +0 -0
  806. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
  807. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/Constants.h +0 -0
  808. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
  809. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
  810. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
  811. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/IntegralConstant.h +0 -0
  812. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/MKL_support.h +0 -0
  813. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/Macros.h +0 -0
  814. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/Memory.h +0 -0
  815. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/Meta.h +0 -0
  816. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/NonMPL2.h +0 -0
  817. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
  818. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/ReshapedHelper.h +0 -0
  819. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/StaticAssert.h +0 -0
  820. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/SymbolicIndex.h +0 -0
  821. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Core/util/XprHelper.h +0 -0
  822. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
  823. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
  824. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
  825. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
  826. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
  827. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
  828. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
  829. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
  830. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/RealQZ.h +0 -0
  831. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur.h +0 -0
  832. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
  833. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
  834. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
  835. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
  836. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/AlignedBox.h +0 -0
  837. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/AngleAxis.h +0 -0
  838. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/EulerAngles.h +0 -0
  839. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Homogeneous.h +0 -0
  840. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Hyperplane.h +0 -0
  841. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/OrthoMethods.h +0 -0
  842. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/ParametrizedLine.h +0 -0
  843. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Quaternion.h +0 -0
  844. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Rotation2D.h +0 -0
  845. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/RotationBase.h +0 -0
  846. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Scaling.h +0 -0
  847. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Transform.h +0 -0
  848. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Translation.h +0 -0
  849. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/Umeyama.h +0 -0
  850. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +0 -0
  851. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Householder/BlockHouseholder.h +0 -0
  852. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Householder/Householder.h +0 -0
  853. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Householder/HouseholderSequence.h +0 -0
  854. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
  855. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
  856. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
  857. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
  858. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
  859. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
  860. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
  861. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
  862. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/Jacobi/Jacobi.h +0 -0
  863. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/KLUSupport/KLUSupport.h +0 -0
  864. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/Determinant.h +0 -0
  865. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/FullPivLU.h +0 -0
  866. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/InverseImpl.h +0 -0
  867. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/PartialPivLU.h +0 -0
  868. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
  869. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/LU/arch/Inverse_SSE.h +0 -0
  870. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/MetisSupport/MetisSupport.h +0 -0
  871. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/OrderingMethods/Amd.h +0 -0
  872. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
  873. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/OrderingMethods/Ordering.h +0 -0
  874. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
  875. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
  876. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
  877. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
  878. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
  879. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
  880. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/HouseholderQR.h +0 -0
  881. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
  882. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
  883. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/BDCSVD.h +0 -0
  884. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/JacobiSVD.h +0 -0
  885. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
  886. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/SVDBase.h +0 -0
  887. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
  888. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
  889. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
  890. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/AmbiVector.h +0 -0
  891. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/CompressedStorage.h +0 -0
  892. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
  893. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
  894. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseAssign.h +0 -0
  895. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseBlock.h +0 -0
  896. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseColEtree.h +0 -0
  897. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
  898. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
  899. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
  900. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
  901. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
  902. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseDot.h +0 -0
  903. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
  904. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseMap.h +0 -0
  905. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrix.h +0 -0
  906. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
  907. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparsePermutation.h +0 -0
  908. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseProduct.h +0 -0
  909. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseRedux.h +0 -0
  910. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseRef.h +0 -0
  911. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
  912. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
  913. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
  914. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseTranspose.h +0 -0
  915. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
  916. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseUtil.h +0 -0
  917. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseVector.h +0 -0
  918. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/SparseView.h +0 -0
  919. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseCore/TriangularSolver.h +0 -0
  920. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU.h +0 -0
  921. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
  922. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
  923. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
  924. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
  925. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
  926. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
  927. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
  928. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
  929. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
  930. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
  931. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
  932. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
  933. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
  934. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
  935. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
  936. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
  937. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SparseQR/SparseQR.h +0 -0
  938. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/StlSupport/StdDeque.h +0 -0
  939. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/StlSupport/StdList.h +0 -0
  940. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/StlSupport/StdVector.h +0 -0
  941. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/StlSupport/details.h +0 -0
  942. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
  943. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
  944. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/Image.h +0 -0
  945. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/Kernel.h +0 -0
  946. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/RealSvd2x2.h +0 -0
  947. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/blas.h +0 -0
  948. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/lapack.h +0 -0
  949. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/lapacke.h +0 -0
  950. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/misc/lapacke_mangling.h +0 -0
  951. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
  952. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
  953. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/BlockMethods.h +0 -0
  954. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
  955. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
  956. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/IndexedViewMethods.h +0 -0
  957. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
  958. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
  959. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/Eigen/src/plugins/ReshapedMethods.h +0 -0
  960. {polyscope-1.3.4 → polyscope-2.1.0}/deps/eigen/README.md +0 -0
  961. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.clang-format +0 -0
  962. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.git +0 -0
  963. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.github/workflows/macos.yml +0 -0
  964. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.github/workflows/windows.yml +0 -0
  965. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/.gitmodules +0 -0
  966. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/CMakeLists.txt +0 -0
  967. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/LICENSE +0 -0
  968. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/README.md +0 -0
  969. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/args/LICENSE +0 -0
  970. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/args/README.md +0 -0
  971. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/args/args/args.hxx +0 -0
  972. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/CMakeLists.txt +0 -0
  973. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/LICENSE +0 -0
  974. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/include/KHR/khrplatform.h +0 -0
  975. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/include/glad/glad.h +0 -0
  976. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glad/src/glad.c +0 -0
  977. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.appveyor.yml +0 -0
  978. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.git +0 -0
  979. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.gitattributes +0 -0
  980. {polyscope-1.3.4/deps/polyscope/deps/glfw/docs → polyscope-2.1.0/deps/polyscope/deps/glfw/.github}/CODEOWNERS +0 -0
  981. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.gitignore +0 -0
  982. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/.mailmap +0 -0
  983. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/GenerateMappings.cmake +0 -0
  984. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/MacOSXBundleInfo.plist.in +0 -0
  985. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32-clang.cmake +0 -0
  986. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32.cmake +0 -0
  987. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/modules/FindEpollShim.cmake +0 -0
  988. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/modules/FindOSMesa.cmake +0 -0
  989. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/modules/FindWaylandProtocols.cmake +0 -0
  990. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/modules/FindXKBCommon.cmake +0 -0
  991. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32-clang.cmake +0 -0
  992. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32.cmake +0 -0
  993. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/LICENSE.md +0 -0
  994. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/cmake_uninstall.cmake.in +0 -0
  995. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/getopt.c +0 -0
  996. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/getopt.h +0 -0
  997. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/glad/gl.h +0 -0
  998. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/glad/khrplatform.h +0 -0
  999. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/glad_gl.c +0 -0
  1000. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/linmath.h +0 -0
  1001. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/mingw/_mingw_dxhelper.h +0 -0
  1002. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/mingw/dinput.h +0 -0
  1003. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/mingw/xinput.h +0 -0
  1004. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/nuklear.h +0 -0
  1005. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/nuklear_glfw_gl2.h +0 -0
  1006. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/tinycthread.c +0 -0
  1007. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/tinycthread.h +0 -0
  1008. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/deps/vs2008/stdint.h +0 -0
  1009. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/CMakeLists.txt +0 -0
  1010. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/DoxygenLayout.xml +0 -0
  1011. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/SUPPORT.md +0 -0
  1012. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/extra.css +0 -0
  1013. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/extra.css.map +0 -0
  1014. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/extra.scss +0 -0
  1015. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/footer.html +0 -0
  1016. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/header.html +0 -0
  1017. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/internal.dox +0 -0
  1018. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/main.dox +0 -0
  1019. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/docs/spaces.svg +0 -0
  1020. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/CMakeLists.txt +0 -0
  1021. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/boing.c +0 -0
  1022. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/gears.c +0 -0
  1023. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/glfw.icns +0 -0
  1024. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/glfw.ico +0 -0
  1025. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/glfw.rc +0 -0
  1026. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/heightmap.c +0 -0
  1027. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/offscreen.c +0 -0
  1028. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/particles.c +0 -0
  1029. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/sharing.c +0 -0
  1030. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/simple.c +0 -0
  1031. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/splitview.c +0 -0
  1032. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/examples/wave.c +0 -0
  1033. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/cocoa_joystick.h +0 -0
  1034. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/cocoa_time.c +0 -0
  1035. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/glfw3Config.cmake.in +0 -0
  1036. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/mappings.h +0 -0
  1037. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/mappings.h.in +0 -0
  1038. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_init.c +0 -0
  1039. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_joystick.c +0 -0
  1040. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_joystick.h +0 -0
  1041. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_monitor.c +0 -0
  1042. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/null_platform.h +0 -0
  1043. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/osmesa_context.h +0 -0
  1044. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/posix_thread.c +0 -0
  1045. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/posix_thread.h +0 -0
  1046. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/posix_time.c +0 -0
  1047. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/posix_time.h +0 -0
  1048. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/wgl_context.h +0 -0
  1049. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/win32_joystick.h +0 -0
  1050. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/win32_thread.c +0 -0
  1051. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/win32_time.c +0 -0
  1052. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/src/x11_monitor.c +0 -0
  1053. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/CMakeLists.txt +0 -0
  1054. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/clipboard.c +0 -0
  1055. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/cursor.c +0 -0
  1056. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/empty.c +0 -0
  1057. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/icon.c +0 -0
  1058. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/inputlag.c +0 -0
  1059. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/joysticks.c +0 -0
  1060. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/monitors.c +0 -0
  1061. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/msaa.c +0 -0
  1062. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/opacity.c +0 -0
  1063. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/reopen.c +0 -0
  1064. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/tearing.c +0 -0
  1065. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/threads.c +0 -0
  1066. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/timeout.c +0 -0
  1067. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/title.c +0 -0
  1068. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glfw/tests/windows.c +0 -0
  1069. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/CMakeLists.txt +0 -0
  1070. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/copying.txt +0 -0
  1071. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/CMakeLists.txt +0 -0
  1072. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/common.hpp +0 -0
  1073. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_features.hpp +0 -0
  1074. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_fixes.hpp +0 -0
  1075. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_noise.hpp +0 -0
  1076. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_swizzle.hpp +0 -0
  1077. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_swizzle_func.hpp +0 -0
  1078. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/_vectorize.hpp +0 -0
  1079. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/compute_common.hpp +0 -0
  1080. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/compute_vector_relational.hpp +0 -0
  1081. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_common.inl +0 -0
  1082. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_common_simd.inl +0 -0
  1083. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_exponential.inl +0 -0
  1084. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_exponential_simd.inl +0 -0
  1085. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_geometric.inl +0 -0
  1086. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_geometric_simd.inl +0 -0
  1087. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_integer.inl +0 -0
  1088. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_integer_simd.inl +0 -0
  1089. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_matrix.inl +0 -0
  1090. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_matrix_simd.inl +0 -0
  1091. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_packing.inl +0 -0
  1092. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_packing_simd.inl +0 -0
  1093. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_trigonometric.inl +0 -0
  1094. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_trigonometric_simd.inl +0 -0
  1095. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational.inl +0 -0
  1096. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational_simd.inl +0 -0
  1097. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/glm.cpp +0 -0
  1098. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/qualifier.hpp +0 -0
  1099. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/setup.hpp +0 -0
  1100. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_float.hpp +0 -0
  1101. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_half.hpp +0 -0
  1102. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_half.inl +0 -0
  1103. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.hpp +0 -0
  1104. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.inl +0 -0
  1105. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.hpp +0 -0
  1106. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.inl +0 -0
  1107. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.hpp +0 -0
  1108. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.inl +0 -0
  1109. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.hpp +0 -0
  1110. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.inl +0 -0
  1111. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.hpp +0 -0
  1112. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.inl +0 -0
  1113. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.hpp +0 -0
  1114. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.inl +0 -0
  1115. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.hpp +0 -0
  1116. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.inl +0 -0
  1117. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.hpp +0 -0
  1118. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.inl +0 -0
  1119. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.hpp +0 -0
  1120. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.inl +0 -0
  1121. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4_simd.inl +0 -0
  1122. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_quat.hpp +0 -0
  1123. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_quat.inl +0 -0
  1124. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_quat_simd.inl +0 -0
  1125. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.hpp +0 -0
  1126. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.inl +0 -0
  1127. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.hpp +0 -0
  1128. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.inl +0 -0
  1129. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.hpp +0 -0
  1130. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.inl +0 -0
  1131. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.hpp +0 -0
  1132. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.inl +0 -0
  1133. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/detail/type_vec4_simd.inl +0 -0
  1134. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/exponential.hpp +0 -0
  1135. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.hpp +0 -0
  1136. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.inl +0 -0
  1137. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.hpp +0 -0
  1138. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.inl +0 -0
  1139. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2.hpp +0 -0
  1140. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2_precision.hpp +0 -0
  1141. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3.hpp +0 -0
  1142. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3_precision.hpp +0 -0
  1143. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4.hpp +0 -0
  1144. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4_precision.hpp +0 -0
  1145. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2.hpp +0 -0
  1146. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2_precision.hpp +0 -0
  1147. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3.hpp +0 -0
  1148. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3_precision.hpp +0 -0
  1149. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4.hpp +0 -0
  1150. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4_precision.hpp +0 -0
  1151. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2.hpp +0 -0
  1152. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2_precision.hpp +0 -0
  1153. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3.hpp +0 -0
  1154. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3_precision.hpp +0 -0
  1155. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4.hpp +0 -0
  1156. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4_precision.hpp +0 -0
  1157. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2.hpp +0 -0
  1158. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2_precision.hpp +0 -0
  1159. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3.hpp +0 -0
  1160. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3_precision.hpp +0 -0
  1161. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4.hpp +0 -0
  1162. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4_precision.hpp +0 -0
  1163. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2.hpp +0 -0
  1164. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2_precision.hpp +0 -0
  1165. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3.hpp +0 -0
  1166. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3_precision.hpp +0 -0
  1167. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4.hpp +0 -0
  1168. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4_precision.hpp +0 -0
  1169. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2.hpp +0 -0
  1170. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2_precision.hpp +0 -0
  1171. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3.hpp +0 -0
  1172. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3_precision.hpp +0 -0
  1173. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4.hpp +0 -0
  1174. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4_precision.hpp +0 -0
  1175. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.hpp +0 -0
  1176. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.inl +0 -0
  1177. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.hpp +0 -0
  1178. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.inl +0 -0
  1179. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.hpp +0 -0
  1180. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.inl +0 -0
  1181. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.hpp +0 -0
  1182. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.inl +0 -0
  1183. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common_simd.inl +0 -0
  1184. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double.hpp +0 -0
  1185. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double_precision.hpp +0 -0
  1186. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.hpp +0 -0
  1187. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.inl +0 -0
  1188. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float.hpp +0 -0
  1189. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float_precision.hpp +0 -0
  1190. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.hpp +0 -0
  1191. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.inl +0 -0
  1192. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.hpp +0 -0
  1193. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.inl +0 -0
  1194. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.hpp +0 -0
  1195. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.inl +0 -0
  1196. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.hpp +0 -0
  1197. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.inl +0 -0
  1198. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.hpp +0 -0
  1199. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.inl +0 -0
  1200. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.hpp +0 -0
  1201. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.inl +0 -0
  1202. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_int_sized.hpp +0 -0
  1203. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.hpp +0 -0
  1204. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.inl +0 -0
  1205. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.hpp +0 -0
  1206. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.inl +0 -0
  1207. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_uint_sized.hpp +0 -0
  1208. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.hpp +0 -0
  1209. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.inl +0 -0
  1210. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1.hpp +0 -0
  1211. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1_precision.hpp +0 -0
  1212. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2.hpp +0 -0
  1213. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2_precision.hpp +0 -0
  1214. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3.hpp +0 -0
  1215. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3_precision.hpp +0 -0
  1216. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4.hpp +0 -0
  1217. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4_precision.hpp +0 -0
  1218. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_common.hpp +0 -0
  1219. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_common.inl +0 -0
  1220. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double1.hpp +0 -0
  1221. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double1_precision.hpp +0 -0
  1222. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double2.hpp +0 -0
  1223. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double2_precision.hpp +0 -0
  1224. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double3.hpp +0 -0
  1225. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double3_precision.hpp +0 -0
  1226. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double4.hpp +0 -0
  1227. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_double4_precision.hpp +0 -0
  1228. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float1.hpp +0 -0
  1229. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float1_precision.hpp +0 -0
  1230. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float2.hpp +0 -0
  1231. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float2_precision.hpp +0 -0
  1232. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float3.hpp +0 -0
  1233. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float3_precision.hpp +0 -0
  1234. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float4.hpp +0 -0
  1235. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_float4_precision.hpp +0 -0
  1236. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int1.hpp +0 -0
  1237. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int1_precision.hpp +0 -0
  1238. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int2.hpp +0 -0
  1239. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int2_precision.hpp +0 -0
  1240. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int3.hpp +0 -0
  1241. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int3_precision.hpp +0 -0
  1242. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int4.hpp +0 -0
  1243. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_int4_precision.hpp +0 -0
  1244. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.hpp +0 -0
  1245. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.inl +0 -0
  1246. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.hpp +0 -0
  1247. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.inl +0 -0
  1248. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1.hpp +0 -0
  1249. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1_precision.hpp +0 -0
  1250. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2.hpp +0 -0
  1251. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2_precision.hpp +0 -0
  1252. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3.hpp +0 -0
  1253. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3_precision.hpp +0 -0
  1254. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4.hpp +0 -0
  1255. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4_precision.hpp +0 -0
  1256. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.hpp +0 -0
  1257. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.inl +0 -0
  1258. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/ext.hpp +0 -0
  1259. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/fwd.hpp +0 -0
  1260. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/geometric.hpp +0 -0
  1261. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/glm.hpp +0 -0
  1262. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.hpp +0 -0
  1263. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.inl +0 -0
  1264. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/color_space.hpp +0 -0
  1265. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/color_space.inl +0 -0
  1266. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/constants.hpp +0 -0
  1267. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/constants.inl +0 -0
  1268. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.hpp +0 -0
  1269. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.inl +0 -0
  1270. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/integer.hpp +0 -0
  1271. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/integer.inl +0 -0
  1272. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.hpp +0 -0
  1273. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.inl +0 -0
  1274. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_integer.hpp +0 -0
  1275. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.hpp +0 -0
  1276. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.inl +0 -0
  1277. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.hpp +0 -0
  1278. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.inl +0 -0
  1279. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/noise.hpp +0 -0
  1280. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/noise.inl +0 -0
  1281. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/packing.hpp +0 -0
  1282. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/packing.inl +0 -0
  1283. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.hpp +0 -0
  1284. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.inl +0 -0
  1285. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/quaternion_simd.inl +0 -0
  1286. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/random.hpp +0 -0
  1287. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/random.inl +0 -0
  1288. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/reciprocal.hpp +0 -0
  1289. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/reciprocal.inl +0 -0
  1290. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/round.hpp +0 -0
  1291. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/round.inl +0 -0
  1292. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_aligned.hpp +0 -0
  1293. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.hpp +0 -0
  1294. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.inl +0 -0
  1295. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.hpp +0 -0
  1296. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.inl +0 -0
  1297. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/ulp.hpp +0 -0
  1298. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/ulp.inl +0 -0
  1299. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtc/vec1.hpp +0 -0
  1300. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.hpp +0 -0
  1301. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.inl +0 -0
  1302. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/bit.hpp +0 -0
  1303. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/bit.inl +0 -0
  1304. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.hpp +0 -0
  1305. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.inl +0 -0
  1306. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.hpp +0 -0
  1307. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.inl +0 -0
  1308. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_space.hpp +0 -0
  1309. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_space.inl +0 -0
  1310. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.hpp +0 -0
  1311. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.inl +0 -0
  1312. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/common.hpp +0 -0
  1313. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/common.inl +0 -0
  1314. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.hpp +0 -0
  1315. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.inl +0 -0
  1316. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.hpp +0 -0
  1317. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.inl +0 -0
  1318. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.hpp +0 -0
  1319. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.inl +0 -0
  1320. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/easing.hpp +0 -0
  1321. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/easing.inl +0 -0
  1322. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.hpp +0 -0
  1323. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.inl +0 -0
  1324. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/extend.hpp +0 -0
  1325. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/extend.inl +0 -0
  1326. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.hpp +0 -0
  1327. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.inl +0 -0
  1328. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.hpp +0 -0
  1329. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.inl +0 -0
  1330. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.hpp +0 -0
  1331. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.inl +0 -0
  1332. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.hpp +0 -0
  1333. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.inl +0 -0
  1334. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.hpp +0 -0
  1335. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.inl +0 -0
  1336. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/float_notmalize.inl +0 -0
  1337. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/functions.hpp +0 -0
  1338. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/functions.inl +0 -0
  1339. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.hpp +0 -0
  1340. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.inl +0 -0
  1341. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.hpp +0 -0
  1342. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.inl +0 -0
  1343. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/hash.hpp +0 -0
  1344. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/hash.inl +0 -0
  1345. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/integer.hpp +0 -0
  1346. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/integer.inl +0 -0
  1347. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/intersect.hpp +0 -0
  1348. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/intersect.inl +0 -0
  1349. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/io.hpp +0 -0
  1350. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/io.inl +0 -0
  1351. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/log_base.hpp +0 -0
  1352. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/log_base.inl +0 -0
  1353. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.hpp +0 -0
  1354. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.inl +0 -0
  1355. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.hpp +0 -0
  1356. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.inl +0 -0
  1357. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.hpp +0 -0
  1358. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.inl +0 -0
  1359. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.hpp +0 -0
  1360. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.inl +0 -0
  1361. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.hpp +0 -0
  1362. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.inl +0 -0
  1363. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.hpp +0 -0
  1364. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.inl +0 -0
  1365. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.hpp +0 -0
  1366. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.inl +0 -0
  1367. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.hpp +0 -0
  1368. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.inl +0 -0
  1369. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.hpp +0 -0
  1370. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.inl +0 -0
  1371. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/norm.hpp +0 -0
  1372. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/norm.inl +0 -0
  1373. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/normal.hpp +0 -0
  1374. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/normal.inl +0 -0
  1375. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.hpp +0 -0
  1376. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.inl +0 -0
  1377. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/number_precision.hpp +0 -0
  1378. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/number_precision.inl +0 -0
  1379. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.hpp +0 -0
  1380. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.inl +0 -0
  1381. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.hpp +0 -0
  1382. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.inl +0 -0
  1383. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.hpp +0 -0
  1384. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.inl +0 -0
  1385. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.hpp +0 -0
  1386. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.inl +0 -0
  1387. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/projection.hpp +0 -0
  1388. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/projection.inl +0 -0
  1389. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.hpp +0 -0
  1390. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.inl +0 -0
  1391. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/range.hpp +0 -0
  1392. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.hpp +0 -0
  1393. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.inl +0 -0
  1394. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.hpp +0 -0
  1395. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.inl +0 -0
  1396. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.hpp +0 -0
  1397. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.inl +0 -0
  1398. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/scalar_multiplication.hpp +0 -0
  1399. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.hpp +0 -0
  1400. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.inl +0 -0
  1401. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/spline.hpp +0 -0
  1402. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/spline.inl +0 -0
  1403. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.hpp +0 -0
  1404. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.inl +0 -0
  1405. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.hpp +0 -0
  1406. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.inl +0 -0
  1407. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/texture.hpp +0 -0
  1408. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/texture.inl +0 -0
  1409. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/transform.hpp +0 -0
  1410. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/transform.inl +0 -0
  1411. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/transform2.hpp +0 -0
  1412. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/transform2.inl +0 -0
  1413. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.hpp +0 -0
  1414. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.inl +0 -0
  1415. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.hpp +0 -0
  1416. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.inl +0 -0
  1417. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vec_swizzle.hpp +0 -0
  1418. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.hpp +0 -0
  1419. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.inl +0 -0
  1420. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.hpp +0 -0
  1421. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.inl +0 -0
  1422. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/wrap.hpp +0 -0
  1423. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/gtx/wrap.inl +0 -0
  1424. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/integer.hpp +0 -0
  1425. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat2x2.hpp +0 -0
  1426. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat2x3.hpp +0 -0
  1427. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat2x4.hpp +0 -0
  1428. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat3x2.hpp +0 -0
  1429. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat3x3.hpp +0 -0
  1430. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat3x4.hpp +0 -0
  1431. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat4x2.hpp +0 -0
  1432. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat4x3.hpp +0 -0
  1433. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/mat4x4.hpp +0 -0
  1434. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/matrix.hpp +0 -0
  1435. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/packing.hpp +0 -0
  1436. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/common.h +0 -0
  1437. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/exponential.h +0 -0
  1438. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/geometric.h +0 -0
  1439. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/integer.h +0 -0
  1440. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/matrix.h +0 -0
  1441. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/packing.h +0 -0
  1442. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/platform.h +0 -0
  1443. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/trigonometric.h +0 -0
  1444. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/simd/vector_relational.h +0 -0
  1445. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/trigonometric.hpp +0 -0
  1446. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/vec2.hpp +0 -0
  1447. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/vec3.hpp +0 -0
  1448. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/vec4.hpp +0 -0
  1449. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/glm/vector_relational.hpp +0 -0
  1450. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/manual.md +0 -0
  1451. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/readme.md +0 -0
  1452. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/util/autoexp.txt +0 -0
  1453. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/util/autoexp.vc2010.dat +0 -0
  1454. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/util/glm.natvis +0 -0
  1455. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/glm/util/usertype.dat +0 -0
  1456. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/.clang-format +0 -0
  1457. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/.git +0 -0
  1458. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/.gitignore +0 -0
  1459. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/.travis.yml +0 -0
  1460. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/LICENSE +0 -0
  1461. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/README.md +0 -0
  1462. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/happly.h +0 -0
  1463. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/happly_logo.jpg +0 -0
  1464. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/CMakeLists.txt +0 -0
  1465. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/CMakeLists.txt.in +0 -0
  1466. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/main_test.cpp +0 -0
  1467. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf.ply +0 -0
  1468. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_ascii.ply +0 -0
  1469. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_big_endian.ply +0 -0
  1470. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/CMakeLists.txt +0 -0
  1471. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.editorconfig +0 -0
  1472. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.git +0 -0
  1473. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.gitattributes +0 -0
  1474. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/FUNDING.yml +0 -0
  1475. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/issue_template.md +0 -0
  1476. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/pull_request_template.md +0 -0
  1477. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/build.yml +0 -0
  1478. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/scheduled.yml +0 -0
  1479. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/static-analysis.yml +0 -0
  1480. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/.gitignore +0 -0
  1481. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/LICENSE.txt +0 -0
  1482. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.cpp +0 -0
  1483. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.h +0 -0
  1484. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.cpp +0 -0
  1485. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.h +0 -0
  1486. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.cpp +0 -0
  1487. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.h +0 -0
  1488. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.cpp +0 -0
  1489. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.h +0 -0
  1490. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.cpp +0 -0
  1491. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.h +0 -0
  1492. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.cpp +0 -0
  1493. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.h +0 -0
  1494. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.cpp +0 -0
  1495. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.h +0 -0
  1496. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.cpp +0 -0
  1497. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.h +0 -0
  1498. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.h +0 -0
  1499. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.mm +0 -0
  1500. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.cpp +0 -0
  1501. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.h +0 -0
  1502. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.cpp +0 -0
  1503. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.h +0 -0
  1504. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3_loader.h +0 -0
  1505. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.h +0 -0
  1506. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.mm +0 -0
  1507. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl.cpp +0 -0
  1508. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl.h +0 -0
  1509. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer.cpp +0 -0
  1510. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer.h +0 -0
  1511. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.cpp +0 -0
  1512. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.h +0 -0
  1513. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.cpp +0 -0
  1514. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.h +0 -0
  1515. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.cpp +0 -0
  1516. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.h +0 -0
  1517. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/generate_spv.sh +0 -0
  1518. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.frag +0 -0
  1519. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.vert +0 -0
  1520. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/BACKENDS.md +0 -0
  1521. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/CHANGELOG.txt +0 -0
  1522. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/EXAMPLES.md +0 -0
  1523. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/FAQ.md +0 -0
  1524. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/FONTS.md +0 -0
  1525. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/README.md +0 -0
  1526. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/docs/TODO.txt +0 -0
  1527. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/README.txt +0 -0
  1528. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/README.md +0 -0
  1529. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj +0 -0
  1530. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters +0 -0
  1531. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/imconfig_allegro5.h +0 -0
  1532. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/main.cpp +0 -0
  1533. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/CMakeLists.txt +0 -0
  1534. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/.gitignore +0 -0
  1535. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/build.gradle +0 -0
  1536. {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
  1537. {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
  1538. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/build.gradle +0 -0
  1539. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/settings.gradle +0 -0
  1540. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/main.cpp +0 -0
  1541. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/README.md +0 -0
  1542. {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
  1543. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/Info-iOS.plist +0 -0
  1544. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard +0 -0
  1545. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/Info-macOS.plist +0 -0
  1546. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard +0 -0
  1547. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/main.mm +0 -0
  1548. {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
  1549. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_opengl2/main.mm +0 -0
  1550. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_opengl3/Makefile +0 -0
  1551. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_opengl3/README.md +0 -0
  1552. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_opengl3/main.cpp +0 -0
  1553. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_opengl3/shell_minimal.html +0 -0
  1554. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/Makefile +0 -0
  1555. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/README.md +0 -0
  1556. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/main.cpp +0 -0
  1557. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/web/index.html +0 -0
  1558. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/Makefile +0 -0
  1559. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/main.mm +0 -0
  1560. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/Makefile +0 -0
  1561. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/build_win32.bat +0 -0
  1562. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj +0 -0
  1563. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters +0 -0
  1564. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/main.cpp +0 -0
  1565. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile +0 -0
  1566. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/build_win32.bat +0 -0
  1567. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj +0 -0
  1568. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters +0 -0
  1569. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/main.cpp +0 -0
  1570. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/CMakeLists.txt +0 -0
  1571. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win32.bat +0 -0
  1572. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win64.bat +0 -0
  1573. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +0 -0
  1574. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters +0 -0
  1575. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/main.cpp +0 -0
  1576. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/Makefile +0 -0
  1577. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj +0 -0
  1578. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters +0 -0
  1579. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/main.cpp +0 -0
  1580. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/Makefile +0 -0
  1581. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/build_win32.bat +0 -0
  1582. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/main.cpp +0 -0
  1583. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_directx11/build_win32.bat +0 -0
  1584. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_directx11/example_sdl_directx11.vcxproj +0 -0
  1585. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_directx11/example_sdl_directx11.vcxproj.filters +0 -0
  1586. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_directx11/main.cpp +0 -0
  1587. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_metal/Makefile +0 -0
  1588. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_metal/main.mm +0 -0
  1589. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/Makefile +0 -0
  1590. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/README.md +0 -0
  1591. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/build_win32.bat +0 -0
  1592. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/example_sdl_opengl2.vcxproj +0 -0
  1593. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/example_sdl_opengl2.vcxproj.filters +0 -0
  1594. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl2/main.cpp +0 -0
  1595. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/Makefile +0 -0
  1596. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/README.md +0 -0
  1597. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/build_win32.bat +0 -0
  1598. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/example_sdl_opengl3.vcxproj +0 -0
  1599. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/example_sdl_opengl3.vcxproj.filters +0 -0
  1600. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_opengl3/main.cpp +0 -0
  1601. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/Makefile +0 -0
  1602. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/README.md +0 -0
  1603. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/build_win32.bat +0 -0
  1604. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/example_sdl_sdlrenderer.vcxproj +0 -0
  1605. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/example_sdl_sdlrenderer.vcxproj.filters +0 -0
  1606. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_sdlrenderer/main.cpp +0 -0
  1607. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_vulkan/build_win32.bat +0 -0
  1608. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_vulkan/example_sdl_vulkan.vcxproj +0 -0
  1609. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_vulkan/example_sdl_vulkan.vcxproj.filters +0 -0
  1610. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl_vulkan/main.cpp +0 -0
  1611. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/build_win32.bat +0 -0
  1612. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj +0 -0
  1613. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters +0 -0
  1614. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/main.cpp +0 -0
  1615. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/build_win32.bat +0 -0
  1616. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj +0 -0
  1617. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters +0 -0
  1618. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/main.cpp +0 -0
  1619. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/build_win32.bat +0 -0
  1620. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +0 -0
  1621. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters +0 -0
  1622. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/main.cpp +0 -0
  1623. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/build_win32.bat +0 -0
  1624. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj +0 -0
  1625. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters +0 -0
  1626. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/main.cpp +0 -0
  1627. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/imgui_examples.sln +0 -0
  1628. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/COPYING.txt +0 -0
  1629. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3.h +0 -0
  1630. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3native.h +0 -0
  1631. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib +0 -0
  1632. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib +0 -0
  1633. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/README.txt +0 -0
  1634. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.c +0 -0
  1635. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.h +0 -0
  1636. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imconfig.h +0 -0
  1637. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui.cpp +0 -0
  1638. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui.h +0 -0
  1639. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_demo.cpp +0 -0
  1640. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_draw.cpp +0 -0
  1641. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_internal.h +0 -0
  1642. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_tables.cpp +0 -0
  1643. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imgui_widgets.cpp +0 -0
  1644. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imstb_rectpack.h +0 -0
  1645. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imstb_textedit.h +0 -0
  1646. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/imstb_truetype.h +0 -0
  1647. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/README.txt +0 -0
  1648. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/README.txt +0 -0
  1649. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.cpp +0 -0
  1650. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.h +0 -0
  1651. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/README.txt +0 -0
  1652. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.gdb +0 -0
  1653. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natstepfilter +0 -0
  1654. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natvis +0 -0
  1655. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
  1656. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/DroidSans.ttf +0 -0
  1657. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Karla-Regular.ttf +0 -0
  1658. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyClean.ttf +0 -0
  1659. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyTiny.ttf +0 -0
  1660. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
  1661. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/binary_to_compressed_c.cpp +0 -0
  1662. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/README.md +0 -0
  1663. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.cpp +0 -0
  1664. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.h +0 -0
  1665. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/imgui/imgui/misc/single_file/imgui_single_file.h +0 -0
  1666. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/json/LICENSE.MIT +0 -0
  1667. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/json/README.md +0 -0
  1668. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/json/include/json/json.hpp +0 -0
  1669. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/stb/CMakeLists.txt +0 -0
  1670. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/stb/stb_image.h +0 -0
  1671. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/stb/stb_image_write.h +0 -0
  1672. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/deps/stb/stb_impl.cpp +0 -0
  1673. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.cpp +0 -0
  1674. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/file2c/file2cpp.c +0 -0
  1675. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/generate_colormap_constant.py +0 -0
  1676. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/.gitignore +0 -0
  1677. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/bin2vector.c +0 -0
  1678. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/concrete_seamless.jpg +0 -0
  1679. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/image2material.cpp +0 -0
  1680. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/imagesrgb2material.cpp +0 -0
  1681. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/misc/material_images/render_material.blend +0 -0
  1682. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/src/render/bindata/bindata_font_cousine_regular.cpp +0 -0
  1683. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/src/render/bindata/bindata_font_lato_regular.cpp +0 -0
  1684. {polyscope-1.3.4 → polyscope-2.1.0}/deps/polyscope/test/CMakeLists.txt.in +0 -0
  1685. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/CMakeLists.txt +0 -0
  1686. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/attr.h +0 -0
  1687. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/buffer_info.h +0 -0
  1688. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/cast.h +0 -0
  1689. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/chrono.h +0 -0
  1690. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/common.h +0 -0
  1691. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/complex.h +0 -0
  1692. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/class.h +0 -0
  1693. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/common.h +0 -0
  1694. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/descr.h +0 -0
  1695. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/init.h +0 -0
  1696. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/internals.h +0 -0
  1697. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/type_caster_base.h +0 -0
  1698. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/detail/typeid.h +0 -0
  1699. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/eigen/matrix.h +0 -0
  1700. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/eigen/tensor.h +0 -0
  1701. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/eigen.h +0 -0
  1702. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/embed.h +0 -0
  1703. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/eval.h +0 -0
  1704. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/functional.h +0 -0
  1705. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/gil.h +0 -0
  1706. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/iostream.h +0 -0
  1707. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/numpy.h +0 -0
  1708. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/operators.h +0 -0
  1709. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/options.h +0 -0
  1710. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/pybind11.h +0 -0
  1711. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/pytypes.h +0 -0
  1712. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/stl/filesystem.h +0 -0
  1713. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/stl.h +0 -0
  1714. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/include/pybind11/stl_bind.h +0 -0
  1715. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/CMakeLists.txt +0 -0
  1716. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/constructor_stats.h +0 -0
  1717. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/local_bindings.h +0 -0
  1718. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/object.h +0 -0
  1719. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/pybind11_tests.h +0 -0
  1720. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
  1721. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -0
  1722. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -0
  1723. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -0
  1724. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -0
  1725. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -0
  1726. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -0
  1727. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_embed/CMakeLists.txt +0 -0
  1728. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tests/test_exceptions.h +0 -0
  1729. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/FindCatch.cmake +0 -0
  1730. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/FindEigen3.cmake +0 -0
  1731. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/FindPythonLibsNew.cmake +0 -0
  1732. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/JoinPaths.cmake +0 -0
  1733. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/pybind11Common.cmake +0 -0
  1734. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/pybind11NewTools.cmake +0 -0
  1735. {polyscope-1.3.4 → polyscope-2.1.0}/deps/pybind11/tools/pybind11Tools.cmake +0 -0
  1736. {polyscope-1.3.4 → polyscope-2.1.0}/setup.cfg +0 -0
  1737. {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope/imgui/__init__.py +0 -0
  1738. {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope.egg-info/dependency_links.txt +0 -0
  1739. {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope.egg-info/not-zip-safe +0 -0
  1740. {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope.egg-info/requires.txt +0 -0
  1741. {polyscope-1.3.4 → polyscope-2.1.0}/src/polyscope.egg-info/top_level.txt +0 -0
  1742. {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)
@@ -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
+ ![Polyscope](http://polyscope.run/media/teaser.svg)
18
+
19
+ [![actions status linux](https://github.com/nmwsharp/polyscope/workflows/linux/badge.svg)](https://github.com/nmwsharp/polyscope/actions)
20
+ [![actions status macOS](https://github.com/nmwsharp/polyscope/workflows/macOS/badge.svg)](https://github.com/nmwsharp/polyscope/actions)
21
+ [![actions status windows](https://github.com/nmwsharp/polyscope/workflows/windows/badge.svg)](https://github.com/nmwsharp/polyscope/actions)
22
+ ![PyPI](https://img.shields.io/pypi/v/polyscope?style=flat-square)
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
+ [![Linux](https://github.com/nmwsharp/polyscope-py/workflows/Test%20Linux/badge.svg)](https://github.com/nmwsharp/polyscope-py/actions)
5
+ [![macOS](https://github.com/nmwsharp/polyscope-py/workflows/Test%20macOS/badge.svg)](https://github.com/nmwsharp/polyscope-py/actions)
6
+ [![Windows](https://github.com/nmwsharp/polyscope-py/workflows/Test%20Windows/badge.svg)](https://github.com/nmwsharp/polyscope-py/actions)
7
+ [![PyPI](https://img.shields.io/pypi/v/polyscope?style=plastic)](https://pypi.org/project/polyscope/)
8
+ [![Conda](https://img.shields.io/conda/v/conda-forge/polyscope)](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
+ }