polyscope 2.3.0__tar.gz → 2.5.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 (4762) hide show
  1. polyscope-2.5.0/.github/workflows/cibuildwheel_config.toml +21 -0
  2. polyscope-2.5.0/.github/workflows/publish.yml +92 -0
  3. polyscope-2.5.0/.github/workflows/test_build.yml +90 -0
  4. polyscope-2.5.0/.github/workflows/test_linux.yml +53 -0
  5. polyscope-2.5.0/.github/workflows/test_macos.yml +43 -0
  6. polyscope-2.5.0/.github/workflows/test_windows.yml +45 -0
  7. polyscope-2.5.0/.gitignore +52 -0
  8. polyscope-2.5.0/.gitmodules +9 -0
  9. polyscope-2.5.0/CMakeLists.txt +39 -0
  10. polyscope-2.5.0/PKG-INFO +84 -0
  11. polyscope-2.5.0/README.md +45 -0
  12. polyscope-2.5.0/deps/eigen/.gitignore +37 -0
  13. polyscope-2.5.0/deps/eigen/.hgeol +11 -0
  14. polyscope-2.5.0/deps/eigen/CMakeLists.txt +653 -0
  15. polyscope-2.5.0/deps/eigen/CTestConfig.cmake +17 -0
  16. polyscope-2.5.0/deps/eigen/CTestCustom.cmake.in +4 -0
  17. polyscope-2.5.0/deps/eigen/INSTALL +35 -0
  18. polyscope-2.5.0/deps/eigen/bench/BenchSparseUtil.h +149 -0
  19. polyscope-2.5.0/deps/eigen/bench/BenchTimer.h +199 -0
  20. polyscope-2.5.0/deps/eigen/bench/BenchUtil.h +92 -0
  21. polyscope-2.5.0/deps/eigen/bench/README.txt +55 -0
  22. polyscope-2.5.0/deps/eigen/bench/analyze-blocking-sizes.cpp +876 -0
  23. polyscope-2.5.0/deps/eigen/bench/basicbench.cxxlist +28 -0
  24. polyscope-2.5.0/deps/eigen/bench/basicbenchmark.cpp +35 -0
  25. polyscope-2.5.0/deps/eigen/bench/basicbenchmark.h +63 -0
  26. polyscope-2.5.0/deps/eigen/bench/benchBlasGemm.cpp +219 -0
  27. polyscope-2.5.0/deps/eigen/bench/benchCholesky.cpp +142 -0
  28. polyscope-2.5.0/deps/eigen/bench/benchEigenSolver.cpp +212 -0
  29. polyscope-2.5.0/deps/eigen/bench/benchFFT.cpp +115 -0
  30. polyscope-2.5.0/deps/eigen/bench/benchGeometry.cpp +134 -0
  31. polyscope-2.5.0/deps/eigen/bench/benchVecAdd.cpp +135 -0
  32. polyscope-2.5.0/deps/eigen/bench/bench_gemm.cpp +375 -0
  33. polyscope-2.5.0/deps/eigen/bench/bench_multi_compilers.sh +28 -0
  34. polyscope-2.5.0/deps/eigen/bench/bench_norm.cpp +360 -0
  35. polyscope-2.5.0/deps/eigen/bench/bench_reverse.cpp +84 -0
  36. polyscope-2.5.0/deps/eigen/bench/bench_sum.cpp +18 -0
  37. polyscope-2.5.0/deps/eigen/bench/bench_unrolling +12 -0
  38. polyscope-2.5.0/deps/eigen/bench/benchmark-blocking-sizes.cpp +677 -0
  39. polyscope-2.5.0/deps/eigen/bench/benchmark.cpp +39 -0
  40. polyscope-2.5.0/deps/eigen/bench/benchmarkSlice.cpp +38 -0
  41. polyscope-2.5.0/deps/eigen/bench/benchmarkX.cpp +36 -0
  42. polyscope-2.5.0/deps/eigen/bench/benchmarkXcwise.cpp +35 -0
  43. polyscope-2.5.0/deps/eigen/bench/benchmark_suite +18 -0
  44. polyscope-2.5.0/deps/eigen/bench/btl/CMakeLists.txt +107 -0
  45. polyscope-2.5.0/deps/eigen/bench/btl/COPYING +340 -0
  46. polyscope-2.5.0/deps/eigen/bench/btl/README +154 -0
  47. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_aat_product.hh +145 -0
  48. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_ata_product.hh +145 -0
  49. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_atv_product.hh +134 -0
  50. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_axpby.hh +127 -0
  51. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_axpy.hh +139 -0
  52. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_cholesky.hh +128 -0
  53. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_ger.hh +128 -0
  54. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_hessenberg.hh +233 -0
  55. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_lu_decomp.hh +124 -0
  56. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_lu_solve.hh +136 -0
  57. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_matrix_matrix_product.hh +150 -0
  58. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_matrix_matrix_product_bis.hh +152 -0
  59. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_matrix_vector_product.hh +153 -0
  60. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_partial_lu.hh +125 -0
  61. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_rot.hh +116 -0
  62. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_symv.hh +139 -0
  63. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_syr2.hh +133 -0
  64. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_trisolve.hh +137 -0
  65. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_trisolve_matrix.hh +165 -0
  66. polyscope-2.5.0/deps/eigen/bench/btl/actions/action_trmm.hh +165 -0
  67. polyscope-2.5.0/deps/eigen/bench/btl/actions/basic_actions.hh +21 -0
  68. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindACML.cmake +51 -0
  69. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindATLAS.cmake +31 -0
  70. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindBLAZE.cmake +31 -0
  71. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindBlitz.cmake +40 -0
  72. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindCBLAS.cmake +35 -0
  73. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindGMM.cmake +17 -0
  74. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindMKL.cmake +65 -0
  75. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindMTL4.cmake +31 -0
  76. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindOPENBLAS.cmake +17 -0
  77. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindPackageHandleStandardArgs.cmake +60 -0
  78. polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindTvmet.cmake +32 -0
  79. polyscope-2.5.0/deps/eigen/bench/btl/cmake/MacroOptionalAddSubdirectory.cmake +31 -0
  80. polyscope-2.5.0/deps/eigen/bench/btl/data/CMakeLists.txt +32 -0
  81. polyscope-2.5.0/deps/eigen/bench/btl/data/action_settings.txt +19 -0
  82. polyscope-2.5.0/deps/eigen/bench/btl/data/gnuplot_common_settings.hh +87 -0
  83. polyscope-2.5.0/deps/eigen/bench/btl/data/go_mean +58 -0
  84. polyscope-2.5.0/deps/eigen/bench/btl/data/mean.cxx +182 -0
  85. polyscope-2.5.0/deps/eigen/bench/btl/data/mk_gnuplot_script.sh +68 -0
  86. polyscope-2.5.0/deps/eigen/bench/btl/data/mk_mean_script.sh +52 -0
  87. polyscope-2.5.0/deps/eigen/bench/btl/data/mk_new_gnuplot.sh +54 -0
  88. polyscope-2.5.0/deps/eigen/bench/btl/data/perlib_plot_settings.txt +16 -0
  89. polyscope-2.5.0/deps/eigen/bench/btl/data/regularize.cxx +131 -0
  90. polyscope-2.5.0/deps/eigen/bench/btl/data/smooth.cxx +198 -0
  91. polyscope-2.5.0/deps/eigen/bench/btl/data/smooth_all.sh +68 -0
  92. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/bench.hh +168 -0
  93. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/bench_parameter.hh +53 -0
  94. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/btl.hh +242 -0
  95. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/init/init_function.hh +54 -0
  96. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/init/init_matrix.hh +64 -0
  97. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/init/init_vector.hh +37 -0
  98. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/static/bench_static.hh +80 -0
  99. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/static/intel_bench_fixed_size.hh +66 -0
  100. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/static/static_size_generator.hh +57 -0
  101. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/STL_perf_analyzer.hh +82 -0
  102. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/STL_timer.hh +78 -0
  103. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/mixed_perf_analyzer.hh +73 -0
  104. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/portable_perf_analyzer.hh +103 -0
  105. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/portable_perf_analyzer_old.hh +134 -0
  106. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/portable_timer.hh +187 -0
  107. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/x86_perf_analyzer.hh +108 -0
  108. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/x86_timer.hh +246 -0
  109. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/utils/size_lin_log.hh +70 -0
  110. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/utils/size_log.hh +54 -0
  111. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/utils/utilities.h +90 -0
  112. polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/utils/xy_file.hh +75 -0
  113. polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/CMakeLists.txt +47 -0
  114. polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/blas.h +675 -0
  115. polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/blas_interface.hh +83 -0
  116. polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/blas_interface_impl.hh +147 -0
  117. polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/c_interface_base.h +73 -0
  118. polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/main.cpp +73 -0
  119. polyscope-2.5.0/deps/eigen/bench/btl/libs/STL/CMakeLists.txt +2 -0
  120. polyscope-2.5.0/deps/eigen/bench/btl/libs/STL/STL_interface.hh +244 -0
  121. polyscope-2.5.0/deps/eigen/bench/btl/libs/STL/main.cpp +42 -0
  122. polyscope-2.5.0/deps/eigen/bench/btl/libs/blaze/CMakeLists.txt +13 -0
  123. polyscope-2.5.0/deps/eigen/bench/btl/libs/blaze/blaze_interface.hh +141 -0
  124. polyscope-2.5.0/deps/eigen/bench/btl/libs/blaze/main.cpp +40 -0
  125. polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/CMakeLists.txt +17 -0
  126. polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/blitz_LU_solve_interface.hh +192 -0
  127. polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/blitz_interface.hh +147 -0
  128. polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/btl_blitz.cpp +51 -0
  129. polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/btl_tiny_blitz.cpp +38 -0
  130. polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/tiny_blitz_interface.hh +106 -0
  131. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/CMakeLists.txt +19 -0
  132. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/btl_tiny_eigen2.cpp +46 -0
  133. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/eigen2_interface.hh +168 -0
  134. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/main_adv.cpp +44 -0
  135. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/main_linear.cpp +34 -0
  136. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/main_matmat.cpp +35 -0
  137. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/main_vecmat.cpp +36 -0
  138. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/CMakeLists.txt +65 -0
  139. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/btl_tiny_eigen3.cpp +46 -0
  140. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/eigen3_interface.hh +242 -0
  141. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/main_adv.cpp +44 -0
  142. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/main_linear.cpp +35 -0
  143. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/main_matmat.cpp +35 -0
  144. polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/main_vecmat.cpp +36 -0
  145. polyscope-2.5.0/deps/eigen/bench/btl/libs/gmm/CMakeLists.txt +6 -0
  146. polyscope-2.5.0/deps/eigen/bench/btl/libs/gmm/gmm_LU_solve_interface.hh +192 -0
  147. polyscope-2.5.0/deps/eigen/bench/btl/libs/gmm/gmm_interface.hh +144 -0
  148. polyscope-2.5.0/deps/eigen/bench/btl/libs/gmm/main.cpp +51 -0
  149. polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/.kdbgrc.main +12 -0
  150. polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/CMakeLists.txt +6 -0
  151. polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/main.cpp +46 -0
  152. polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/mtl4_LU_solve_interface.hh +192 -0
  153. polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/mtl4_interface.hh +144 -0
  154. polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/CMakeLists.txt +44 -0
  155. polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/main_linear.cpp +23 -0
  156. polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/main_matmat.cpp +21 -0
  157. polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/main_vecmat.cpp +21 -0
  158. polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/tensor_interface.hh +105 -0
  159. polyscope-2.5.0/deps/eigen/bench/btl/libs/tvmet/CMakeLists.txt +6 -0
  160. polyscope-2.5.0/deps/eigen/bench/btl/libs/tvmet/main.cpp +40 -0
  161. polyscope-2.5.0/deps/eigen/bench/btl/libs/tvmet/tvmet_interface.hh +104 -0
  162. polyscope-2.5.0/deps/eigen/bench/btl/libs/ublas/CMakeLists.txt +7 -0
  163. polyscope-2.5.0/deps/eigen/bench/btl/libs/ublas/main.cpp +44 -0
  164. polyscope-2.5.0/deps/eigen/bench/btl/libs/ublas/ublas_interface.hh +141 -0
  165. polyscope-2.5.0/deps/eigen/bench/check_cache_queries.cpp +101 -0
  166. polyscope-2.5.0/deps/eigen/bench/dense_solvers.cpp +186 -0
  167. polyscope-2.5.0/deps/eigen/bench/eig33.cpp +195 -0
  168. polyscope-2.5.0/deps/eigen/bench/geometry.cpp +126 -0
  169. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/changesets.txt +95 -0
  170. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemm.cpp +12 -0
  171. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemm_common.h +67 -0
  172. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemm_settings.txt +15 -0
  173. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemm_square_settings.txt +11 -0
  174. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemv.cpp +12 -0
  175. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemv_common.h +69 -0
  176. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemv_settings.txt +11 -0
  177. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemv_square_settings.txt +13 -0
  178. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemvt.cpp +12 -0
  179. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/lazy_gemm.cpp +101 -0
  180. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/lazy_gemm_settings.txt +15 -0
  181. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/llt.cpp +15 -0
  182. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/make_plot.sh +112 -0
  183. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/chart_footer.html +41 -0
  184. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/chart_header.html +45 -0
  185. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/footer.html +3 -0
  186. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/header.html +42 -0
  187. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/s1.js +1 -0
  188. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/s2.js +1 -0
  189. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/run.sh +183 -0
  190. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/runall.sh +72 -0
  191. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/trmv_lo.cpp +12 -0
  192. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/trmv_lot.cpp +12 -0
  193. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/trmv_up.cpp +12 -0
  194. polyscope-2.5.0/deps/eigen/bench/perf_monitoring/trmv_upt.cpp +12 -0
  195. polyscope-2.5.0/deps/eigen/bench/product_threshold.cpp +143 -0
  196. polyscope-2.5.0/deps/eigen/bench/quat_slerp.cpp +247 -0
  197. polyscope-2.5.0/deps/eigen/bench/quatmul.cpp +47 -0
  198. polyscope-2.5.0/deps/eigen/bench/sparse_cholesky.cpp +216 -0
  199. polyscope-2.5.0/deps/eigen/bench/sparse_dense_product.cpp +187 -0
  200. polyscope-2.5.0/deps/eigen/bench/sparse_lu.cpp +132 -0
  201. polyscope-2.5.0/deps/eigen/bench/sparse_product.cpp +323 -0
  202. polyscope-2.5.0/deps/eigen/bench/sparse_randomsetter.cpp +125 -0
  203. polyscope-2.5.0/deps/eigen/bench/sparse_setter.cpp +485 -0
  204. polyscope-2.5.0/deps/eigen/bench/sparse_transpose.cpp +104 -0
  205. polyscope-2.5.0/deps/eigen/bench/sparse_trisolver.cpp +220 -0
  206. polyscope-2.5.0/deps/eigen/bench/spbench/CMakeLists.txt +85 -0
  207. polyscope-2.5.0/deps/eigen/bench/spbench/sp_solver.cpp +125 -0
  208. polyscope-2.5.0/deps/eigen/bench/spbench/spbench.dtd +31 -0
  209. polyscope-2.5.0/deps/eigen/bench/spbench/spbenchsolver.cpp +87 -0
  210. polyscope-2.5.0/deps/eigen/bench/spbench/spbenchsolver.h +554 -0
  211. polyscope-2.5.0/deps/eigen/bench/spbench/spbenchstyle.h +95 -0
  212. polyscope-2.5.0/deps/eigen/bench/spbench/test_sparseLU.cpp +93 -0
  213. polyscope-2.5.0/deps/eigen/bench/spmv.cpp +233 -0
  214. polyscope-2.5.0/deps/eigen/bench/tensors/README +20 -0
  215. polyscope-2.5.0/deps/eigen/bench/tensors/benchmark.h +49 -0
  216. polyscope-2.5.0/deps/eigen/bench/tensors/benchmark_main.cc +237 -0
  217. polyscope-2.5.0/deps/eigen/bench/tensors/contraction_benchmarks_cpu.cc +39 -0
  218. polyscope-2.5.0/deps/eigen/bench/tensors/eigen_sycl_bench.sh +30 -0
  219. polyscope-2.5.0/deps/eigen/bench/tensors/eigen_sycl_bench_contract.sh +7 -0
  220. polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks.h +597 -0
  221. polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks_cpu.cc +168 -0
  222. polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks_fp16_gpu.cu +77 -0
  223. polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks_gpu.cu +75 -0
  224. polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks_sycl.cc +140 -0
  225. polyscope-2.5.0/deps/eigen/bench/tensors/tensor_contract_sycl_bench.cc +325 -0
  226. polyscope-2.5.0/deps/eigen/bench/vdw_new.cpp +56 -0
  227. polyscope-2.5.0/deps/eigen/blas/BandTriangularSolver.h +97 -0
  228. polyscope-2.5.0/deps/eigen/blas/CMakeLists.txt +57 -0
  229. polyscope-2.5.0/deps/eigen/blas/GeneralRank1Update.h +44 -0
  230. polyscope-2.5.0/deps/eigen/blas/PackedSelfadjointProduct.h +53 -0
  231. polyscope-2.5.0/deps/eigen/blas/PackedTriangularMatrixVector.h +79 -0
  232. polyscope-2.5.0/deps/eigen/blas/PackedTriangularSolverVector.h +88 -0
  233. polyscope-2.5.0/deps/eigen/blas/README.txt +6 -0
  234. polyscope-2.5.0/deps/eigen/blas/Rank2Update.h +57 -0
  235. polyscope-2.5.0/deps/eigen/blas/common.h +175 -0
  236. polyscope-2.5.0/deps/eigen/blas/complex_double.cpp +20 -0
  237. polyscope-2.5.0/deps/eigen/blas/complex_single.cpp +20 -0
  238. polyscope-2.5.0/deps/eigen/blas/double.cpp +32 -0
  239. polyscope-2.5.0/deps/eigen/blas/f2c/chbmv.c +487 -0
  240. polyscope-2.5.0/deps/eigen/blas/f2c/chpmv.c +438 -0
  241. polyscope-2.5.0/deps/eigen/blas/f2c/complexdots.c +84 -0
  242. polyscope-2.5.0/deps/eigen/blas/f2c/ctbmv.c +647 -0
  243. polyscope-2.5.0/deps/eigen/blas/f2c/d_cnjg.c +6 -0
  244. polyscope-2.5.0/deps/eigen/blas/f2c/datatypes.h +24 -0
  245. polyscope-2.5.0/deps/eigen/blas/f2c/drotm.c +215 -0
  246. polyscope-2.5.0/deps/eigen/blas/f2c/drotmg.c +293 -0
  247. polyscope-2.5.0/deps/eigen/blas/f2c/dsbmv.c +366 -0
  248. polyscope-2.5.0/deps/eigen/blas/f2c/dspmv.c +316 -0
  249. polyscope-2.5.0/deps/eigen/blas/f2c/dtbmv.c +428 -0
  250. polyscope-2.5.0/deps/eigen/blas/f2c/lsame.c +117 -0
  251. polyscope-2.5.0/deps/eigen/blas/f2c/r_cnjg.c +6 -0
  252. polyscope-2.5.0/deps/eigen/blas/f2c/srotm.c +216 -0
  253. polyscope-2.5.0/deps/eigen/blas/f2c/srotmg.c +295 -0
  254. polyscope-2.5.0/deps/eigen/blas/f2c/ssbmv.c +368 -0
  255. polyscope-2.5.0/deps/eigen/blas/f2c/sspmv.c +316 -0
  256. polyscope-2.5.0/deps/eigen/blas/f2c/stbmv.c +428 -0
  257. polyscope-2.5.0/deps/eigen/blas/f2c/zhbmv.c +488 -0
  258. polyscope-2.5.0/deps/eigen/blas/f2c/zhpmv.c +438 -0
  259. polyscope-2.5.0/deps/eigen/blas/f2c/ztbmv.c +647 -0
  260. polyscope-2.5.0/deps/eigen/blas/fortran/complexdots.f +43 -0
  261. polyscope-2.5.0/deps/eigen/blas/level1_cplx_impl.h +155 -0
  262. polyscope-2.5.0/deps/eigen/blas/level1_impl.h +144 -0
  263. polyscope-2.5.0/deps/eigen/blas/level1_real_impl.h +122 -0
  264. polyscope-2.5.0/deps/eigen/blas/level2_cplx_impl.h +360 -0
  265. polyscope-2.5.0/deps/eigen/blas/level2_impl.h +553 -0
  266. polyscope-2.5.0/deps/eigen/blas/level2_real_impl.h +306 -0
  267. polyscope-2.5.0/deps/eigen/blas/level3_impl.h +702 -0
  268. polyscope-2.5.0/deps/eigen/blas/single.cpp +22 -0
  269. polyscope-2.5.0/deps/eigen/blas/testing/CMakeLists.txt +40 -0
  270. polyscope-2.5.0/deps/eigen/blas/testing/cblat1.f +724 -0
  271. polyscope-2.5.0/deps/eigen/blas/testing/cblat2.dat +35 -0
  272. polyscope-2.5.0/deps/eigen/blas/testing/cblat2.f +3279 -0
  273. polyscope-2.5.0/deps/eigen/blas/testing/cblat3.dat +23 -0
  274. polyscope-2.5.0/deps/eigen/blas/testing/cblat3.f +3492 -0
  275. polyscope-2.5.0/deps/eigen/blas/testing/dblat1.f +1065 -0
  276. polyscope-2.5.0/deps/eigen/blas/testing/dblat2.dat +34 -0
  277. polyscope-2.5.0/deps/eigen/blas/testing/dblat2.f +3176 -0
  278. polyscope-2.5.0/deps/eigen/blas/testing/dblat3.dat +20 -0
  279. polyscope-2.5.0/deps/eigen/blas/testing/dblat3.f +2873 -0
  280. polyscope-2.5.0/deps/eigen/blas/testing/runblastest.sh +45 -0
  281. polyscope-2.5.0/deps/eigen/blas/testing/sblat1.f +1021 -0
  282. polyscope-2.5.0/deps/eigen/blas/testing/sblat2.dat +34 -0
  283. polyscope-2.5.0/deps/eigen/blas/testing/sblat2.f +3176 -0
  284. polyscope-2.5.0/deps/eigen/blas/testing/sblat3.dat +20 -0
  285. polyscope-2.5.0/deps/eigen/blas/testing/sblat3.f +2873 -0
  286. polyscope-2.5.0/deps/eigen/blas/testing/zblat1.f +724 -0
  287. polyscope-2.5.0/deps/eigen/blas/testing/zblat2.dat +35 -0
  288. polyscope-2.5.0/deps/eigen/blas/testing/zblat2.f +3287 -0
  289. polyscope-2.5.0/deps/eigen/blas/testing/zblat3.dat +23 -0
  290. polyscope-2.5.0/deps/eigen/blas/testing/zblat3.f +3502 -0
  291. polyscope-2.5.0/deps/eigen/blas/xerbla.cpp +23 -0
  292. polyscope-2.5.0/deps/eigen/cmake/Eigen3Config.cmake.in +23 -0
  293. polyscope-2.5.0/deps/eigen/cmake/Eigen3ConfigLegacy.cmake.in +30 -0
  294. polyscope-2.5.0/deps/eigen/cmake/EigenConfigureTesting.cmake +58 -0
  295. polyscope-2.5.0/deps/eigen/cmake/EigenDetermineOSVersion.cmake +46 -0
  296. polyscope-2.5.0/deps/eigen/cmake/EigenDetermineVSServicePack.cmake +41 -0
  297. polyscope-2.5.0/deps/eigen/cmake/EigenTesting.cmake +638 -0
  298. polyscope-2.5.0/deps/eigen/cmake/EigenUninstall.cmake +40 -0
  299. polyscope-2.5.0/deps/eigen/cmake/FindAdolc.cmake +20 -0
  300. polyscope-2.5.0/deps/eigen/cmake/FindBLAS.cmake +1406 -0
  301. polyscope-2.5.0/deps/eigen/cmake/FindBLASEXT.cmake +380 -0
  302. polyscope-2.5.0/deps/eigen/cmake/FindCholmod.cmake +89 -0
  303. polyscope-2.5.0/deps/eigen/cmake/FindComputeCpp.cmake +443 -0
  304. polyscope-2.5.0/deps/eigen/cmake/FindEigen2.cmake +80 -0
  305. polyscope-2.5.0/deps/eigen/cmake/FindEigen3.cmake +107 -0
  306. polyscope-2.5.0/deps/eigen/cmake/FindFFTW.cmake +119 -0
  307. polyscope-2.5.0/deps/eigen/cmake/FindGLEW.cmake +105 -0
  308. polyscope-2.5.0/deps/eigen/cmake/FindGMP.cmake +21 -0
  309. polyscope-2.5.0/deps/eigen/cmake/FindGSL.cmake +170 -0
  310. polyscope-2.5.0/deps/eigen/cmake/FindGoogleHash.cmake +23 -0
  311. polyscope-2.5.0/deps/eigen/cmake/FindHWLOC.cmake +331 -0
  312. polyscope-2.5.0/deps/eigen/cmake/FindKLU.cmake +48 -0
  313. polyscope-2.5.0/deps/eigen/cmake/FindLAPACK.cmake +273 -0
  314. polyscope-2.5.0/deps/eigen/cmake/FindMPFR.cmake +83 -0
  315. polyscope-2.5.0/deps/eigen/cmake/FindMetis.cmake +264 -0
  316. polyscope-2.5.0/deps/eigen/cmake/FindPTSCOTCH.cmake +423 -0
  317. polyscope-2.5.0/deps/eigen/cmake/FindPastix.cmake +704 -0
  318. polyscope-2.5.0/deps/eigen/cmake/FindSPQR.cmake +41 -0
  319. polyscope-2.5.0/deps/eigen/cmake/FindScotch.cmake +369 -0
  320. polyscope-2.5.0/deps/eigen/cmake/FindStandardMathLibrary.cmake +64 -0
  321. polyscope-2.5.0/deps/eigen/cmake/FindSuperLU.cmake +97 -0
  322. polyscope-2.5.0/deps/eigen/cmake/FindTriSYCL.cmake +152 -0
  323. polyscope-2.5.0/deps/eigen/cmake/FindUmfpack.cmake +53 -0
  324. polyscope-2.5.0/deps/eigen/cmake/RegexUtils.cmake +19 -0
  325. polyscope-2.5.0/deps/eigen/cmake/UseEigen3.cmake +6 -0
  326. polyscope-2.5.0/deps/eigen/cmake/language_support.cmake +67 -0
  327. polyscope-2.5.0/deps/eigen/debug/gdb/__init__.py +1 -0
  328. polyscope-2.5.0/deps/eigen/debug/gdb/printers.py +314 -0
  329. polyscope-2.5.0/deps/eigen/debug/msvc/eigen.natvis +235 -0
  330. polyscope-2.5.0/deps/eigen/debug/msvc/eigen_autoexp_part.dat +295 -0
  331. polyscope-2.5.0/deps/eigen/demos/CMakeLists.txt +13 -0
  332. polyscope-2.5.0/deps/eigen/demos/mandelbrot/CMakeLists.txt +21 -0
  333. polyscope-2.5.0/deps/eigen/demos/mandelbrot/README +10 -0
  334. polyscope-2.5.0/deps/eigen/demos/mandelbrot/mandelbrot.cpp +213 -0
  335. polyscope-2.5.0/deps/eigen/demos/mandelbrot/mandelbrot.h +71 -0
  336. polyscope-2.5.0/deps/eigen/demos/mix_eigen_and_c/README +9 -0
  337. polyscope-2.5.0/deps/eigen/demos/mix_eigen_and_c/binary_library.cpp +185 -0
  338. polyscope-2.5.0/deps/eigen/demos/mix_eigen_and_c/binary_library.h +71 -0
  339. polyscope-2.5.0/deps/eigen/demos/mix_eigen_and_c/example.c +65 -0
  340. polyscope-2.5.0/deps/eigen/demos/opengl/CMakeLists.txt +28 -0
  341. polyscope-2.5.0/deps/eigen/demos/opengl/README +13 -0
  342. polyscope-2.5.0/deps/eigen/demos/opengl/camera.cpp +264 -0
  343. polyscope-2.5.0/deps/eigen/demos/opengl/camera.h +118 -0
  344. polyscope-2.5.0/deps/eigen/demos/opengl/gpuhelper.cpp +126 -0
  345. polyscope-2.5.0/deps/eigen/demos/opengl/gpuhelper.h +207 -0
  346. polyscope-2.5.0/deps/eigen/demos/opengl/icosphere.cpp +120 -0
  347. polyscope-2.5.0/deps/eigen/demos/opengl/icosphere.h +30 -0
  348. polyscope-2.5.0/deps/eigen/demos/opengl/quaternion_demo.cpp +656 -0
  349. polyscope-2.5.0/deps/eigen/demos/opengl/quaternion_demo.h +114 -0
  350. polyscope-2.5.0/deps/eigen/demos/opengl/trackball.cpp +59 -0
  351. polyscope-2.5.0/deps/eigen/demos/opengl/trackball.h +42 -0
  352. polyscope-2.5.0/deps/eigen/doc/AsciiQuickReference.txt +226 -0
  353. polyscope-2.5.0/deps/eigen/doc/B01_Experimental.dox +52 -0
  354. polyscope-2.5.0/deps/eigen/doc/CMakeLists.txt +115 -0
  355. polyscope-2.5.0/deps/eigen/doc/ClassHierarchy.dox +129 -0
  356. polyscope-2.5.0/deps/eigen/doc/CoeffwiseMathFunctionsTable.dox +586 -0
  357. polyscope-2.5.0/deps/eigen/doc/CustomizingEigen_CustomScalar.dox +120 -0
  358. polyscope-2.5.0/deps/eigen/doc/CustomizingEigen_InheritingMatrix.dox +34 -0
  359. polyscope-2.5.0/deps/eigen/doc/CustomizingEigen_NullaryExpr.dox +86 -0
  360. polyscope-2.5.0/deps/eigen/doc/CustomizingEigen_Plugins.dox +69 -0
  361. polyscope-2.5.0/deps/eigen/doc/DenseDecompositionBenchmark.dox +42 -0
  362. polyscope-2.5.0/deps/eigen/doc/Doxyfile.in +1907 -0
  363. polyscope-2.5.0/deps/eigen/doc/Eigen_Silly_Professor_64x64.png +0 -0
  364. polyscope-2.5.0/deps/eigen/doc/FixedSizeVectorizable.dox +38 -0
  365. polyscope-2.5.0/deps/eigen/doc/FunctionsTakingEigenTypes.dox +217 -0
  366. polyscope-2.5.0/deps/eigen/doc/HiPerformance.dox +128 -0
  367. polyscope-2.5.0/deps/eigen/doc/InplaceDecomposition.dox +115 -0
  368. polyscope-2.5.0/deps/eigen/doc/InsideEigenExample.dox +500 -0
  369. polyscope-2.5.0/deps/eigen/doc/LeastSquares.dox +70 -0
  370. polyscope-2.5.0/deps/eigen/doc/Manual.dox +192 -0
  371. polyscope-2.5.0/deps/eigen/doc/MatrixfreeSolverExample.dox +20 -0
  372. polyscope-2.5.0/deps/eigen/doc/NewExpressionType.dox +143 -0
  373. polyscope-2.5.0/deps/eigen/doc/Overview.dox +28 -0
  374. polyscope-2.5.0/deps/eigen/doc/PassingByValue.dox +40 -0
  375. polyscope-2.5.0/deps/eigen/doc/Pitfalls.dox +128 -0
  376. polyscope-2.5.0/deps/eigen/doc/PreprocessorDirectives.dox +177 -0
  377. polyscope-2.5.0/deps/eigen/doc/QuickReference.dox +804 -0
  378. polyscope-2.5.0/deps/eigen/doc/QuickStartGuide.dox +100 -0
  379. polyscope-2.5.0/deps/eigen/doc/SparseLinearSystems.dox +232 -0
  380. polyscope-2.5.0/deps/eigen/doc/SparseQuickReference.dox +272 -0
  381. polyscope-2.5.0/deps/eigen/doc/StlContainers.dox +73 -0
  382. polyscope-2.5.0/deps/eigen/doc/StorageOrders.dox +86 -0
  383. polyscope-2.5.0/deps/eigen/doc/StructHavingEigenMembers.dox +203 -0
  384. polyscope-2.5.0/deps/eigen/doc/TemplateKeyword.dox +133 -0
  385. polyscope-2.5.0/deps/eigen/doc/TopicAliasing.dox +237 -0
  386. polyscope-2.5.0/deps/eigen/doc/TopicAssertions.dox +108 -0
  387. polyscope-2.5.0/deps/eigen/doc/TopicCMakeGuide.dox +56 -0
  388. polyscope-2.5.0/deps/eigen/doc/TopicEigenExpressionTemplates.dox +12 -0
  389. polyscope-2.5.0/deps/eigen/doc/TopicLazyEvaluation.dox +97 -0
  390. polyscope-2.5.0/deps/eigen/doc/TopicLinearAlgebraDecompositions.dox +275 -0
  391. polyscope-2.5.0/deps/eigen/doc/TopicMultithreading.dox +66 -0
  392. polyscope-2.5.0/deps/eigen/doc/TopicResizing.dox +11 -0
  393. polyscope-2.5.0/deps/eigen/doc/TopicScalarTypes.dox +12 -0
  394. polyscope-2.5.0/deps/eigen/doc/TopicVectorization.dox +9 -0
  395. polyscope-2.5.0/deps/eigen/doc/TutorialAdvancedInitialization.dox +162 -0
  396. polyscope-2.5.0/deps/eigen/doc/TutorialArrayClass.dox +192 -0
  397. polyscope-2.5.0/deps/eigen/doc/TutorialBlockOperations.dox +228 -0
  398. polyscope-2.5.0/deps/eigen/doc/TutorialGeometry.dox +242 -0
  399. polyscope-2.5.0/deps/eigen/doc/TutorialLinearAlgebra.dox +292 -0
  400. polyscope-2.5.0/deps/eigen/doc/TutorialMapClass.dox +86 -0
  401. polyscope-2.5.0/deps/eigen/doc/TutorialMatrixArithmetic.dox +214 -0
  402. polyscope-2.5.0/deps/eigen/doc/TutorialMatrixClass.dox +293 -0
  403. polyscope-2.5.0/deps/eigen/doc/TutorialReductionsVisitorsBroadcasting.dox +266 -0
  404. polyscope-2.5.0/deps/eigen/doc/TutorialReshape.dox +82 -0
  405. polyscope-2.5.0/deps/eigen/doc/TutorialSTL.dox +66 -0
  406. polyscope-2.5.0/deps/eigen/doc/TutorialSlicingIndexing.dox +244 -0
  407. polyscope-2.5.0/deps/eigen/doc/TutorialSparse.dox +365 -0
  408. polyscope-2.5.0/deps/eigen/doc/TutorialSparse_example_details.dox +4 -0
  409. polyscope-2.5.0/deps/eigen/doc/UnalignedArrayAssert.dox +133 -0
  410. polyscope-2.5.0/deps/eigen/doc/UsingBlasLapackBackends.dox +133 -0
  411. polyscope-2.5.0/deps/eigen/doc/UsingIntelMKL.dox +113 -0
  412. polyscope-2.5.0/deps/eigen/doc/UsingNVCC.dox +30 -0
  413. polyscope-2.5.0/deps/eigen/doc/WrongStackAlignment.dox +56 -0
  414. polyscope-2.5.0/deps/eigen/doc/eigen_navtree_hacks.js +246 -0
  415. polyscope-2.5.0/deps/eigen/doc/eigendoxy.css +235 -0
  416. polyscope-2.5.0/deps/eigen/doc/eigendoxy_footer.html.in +40 -0
  417. polyscope-2.5.0/deps/eigen/doc/eigendoxy_header.html.in +59 -0
  418. polyscope-2.5.0/deps/eigen/doc/eigendoxy_layout.xml.in +178 -0
  419. polyscope-2.5.0/deps/eigen/doc/eigendoxy_tabs.css +59 -0
  420. polyscope-2.5.0/deps/eigen/doc/examples/.krazy +2 -0
  421. polyscope-2.5.0/deps/eigen/doc/examples/CMakeLists.txt +20 -0
  422. polyscope-2.5.0/deps/eigen/doc/examples/CustomizingEigen_Inheritance.cpp +30 -0
  423. polyscope-2.5.0/deps/eigen/doc/examples/Cwise_erf.cpp +9 -0
  424. polyscope-2.5.0/deps/eigen/doc/examples/Cwise_erfc.cpp +9 -0
  425. polyscope-2.5.0/deps/eigen/doc/examples/Cwise_lgamma.cpp +9 -0
  426. polyscope-2.5.0/deps/eigen/doc/examples/DenseBase_middleCols_int.cpp +15 -0
  427. polyscope-2.5.0/deps/eigen/doc/examples/DenseBase_middleRows_int.cpp +15 -0
  428. polyscope-2.5.0/deps/eigen/doc/examples/DenseBase_template_int_middleCols.cpp +15 -0
  429. polyscope-2.5.0/deps/eigen/doc/examples/DenseBase_template_int_middleRows.cpp +15 -0
  430. polyscope-2.5.0/deps/eigen/doc/examples/QuickStart_example.cpp +14 -0
  431. polyscope-2.5.0/deps/eigen/doc/examples/QuickStart_example2_dynamic.cpp +15 -0
  432. polyscope-2.5.0/deps/eigen/doc/examples/QuickStart_example2_fixed.cpp +15 -0
  433. polyscope-2.5.0/deps/eigen/doc/examples/TemplateKeyword_flexible.cpp +22 -0
  434. polyscope-2.5.0/deps/eigen/doc/examples/TemplateKeyword_simple.cpp +20 -0
  435. polyscope-2.5.0/deps/eigen/doc/examples/TutorialInplaceLU.cpp +61 -0
  436. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgComputeTwice.cpp +23 -0
  437. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgExComputeSolveError.cpp +14 -0
  438. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgExSolveColPivHouseholderQR.cpp +17 -0
  439. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgExSolveLDLT.cpp +16 -0
  440. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgInverseDeterminant.cpp +16 -0
  441. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgRankRevealing.cpp +20 -0
  442. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgSVDSolve.cpp +15 -0
  443. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgSelfAdjointEigenSolver.cpp +18 -0
  444. polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgSetThreshold.cpp +16 -0
  445. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_accessors.cpp +24 -0
  446. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_addition.cpp +23 -0
  447. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_cwise_other.cpp +19 -0
  448. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_interop.cpp +22 -0
  449. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_interop_matrix.cpp +26 -0
  450. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_mult.cpp +16 -0
  451. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp +18 -0
  452. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_colrow.cpp +17 -0
  453. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_corner.cpp +17 -0
  454. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_print_block.cpp +20 -0
  455. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_vector.cpp +14 -0
  456. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_PartialLU_solve.cpp +18 -0
  457. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp +24 -0
  458. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp +21 -0
  459. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp +20 -0
  460. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp +13 -0
  461. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp +20 -0
  462. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp +21 -0
  463. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp +28 -0
  464. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp +18 -0
  465. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp +13 -0
  466. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp +26 -0
  467. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_simple_example_dynamic_size.cpp +22 -0
  468. polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_simple_example_fixed_size.cpp +15 -0
  469. polyscope-2.5.0/deps/eigen/doc/examples/class_Block.cpp +27 -0
  470. polyscope-2.5.0/deps/eigen/doc/examples/class_CwiseBinaryOp.cpp +18 -0
  471. polyscope-2.5.0/deps/eigen/doc/examples/class_CwiseUnaryOp.cpp +19 -0
  472. polyscope-2.5.0/deps/eigen/doc/examples/class_CwiseUnaryOp_ptrfun.cpp +20 -0
  473. polyscope-2.5.0/deps/eigen/doc/examples/class_FixedBlock.cpp +27 -0
  474. polyscope-2.5.0/deps/eigen/doc/examples/class_FixedReshaped.cpp +22 -0
  475. polyscope-2.5.0/deps/eigen/doc/examples/class_FixedVectorBlock.cpp +27 -0
  476. polyscope-2.5.0/deps/eigen/doc/examples/class_Reshaped.cpp +23 -0
  477. polyscope-2.5.0/deps/eigen/doc/examples/class_VectorBlock.cpp +27 -0
  478. polyscope-2.5.0/deps/eigen/doc/examples/function_taking_eigenbase.cpp +18 -0
  479. polyscope-2.5.0/deps/eigen/doc/examples/function_taking_ref.cpp +19 -0
  480. polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp +11 -0
  481. polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.entry +5 -0
  482. polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.evaluator +32 -0
  483. polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.expression +20 -0
  484. polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.main +8 -0
  485. polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.preamble +4 -0
  486. polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.traits +19 -0
  487. polyscope-2.5.0/deps/eigen/doc/examples/make_circulant2.cpp +52 -0
  488. polyscope-2.5.0/deps/eigen/doc/examples/matrixfree_cg.cpp +129 -0
  489. polyscope-2.5.0/deps/eigen/doc/examples/nullary_indexing.cpp +66 -0
  490. polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_add_sub.cpp +22 -0
  491. polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_dot_cross.cpp +15 -0
  492. polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_matrix_mul.cpp +19 -0
  493. polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_redux_basic.cpp +16 -0
  494. polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_scalar_mul_div.cpp +17 -0
  495. polyscope-2.5.0/deps/eigen/doc/examples/tut_matrix_coefficient_accessors.cpp +18 -0
  496. polyscope-2.5.0/deps/eigen/doc/examples/tut_matrix_resize.cpp +18 -0
  497. polyscope-2.5.0/deps/eigen/doc/examples/tut_matrix_resize_fixed_size.cpp +12 -0
  498. polyscope-2.5.0/deps/eigen/doc/ftv2node.png +0 -0
  499. polyscope-2.5.0/deps/eigen/doc/snippets/.krazy +2 -0
  500. polyscope-2.5.0/deps/eigen/doc/snippets/AngleAxis_mimic_euler.cpp +5 -0
  501. polyscope-2.5.0/deps/eigen/doc/snippets/Array_initializer_list_23_cxx11.cpp +5 -0
  502. polyscope-2.5.0/deps/eigen/doc/snippets/Array_initializer_list_vector_cxx11.cpp +2 -0
  503. polyscope-2.5.0/deps/eigen/doc/snippets/Array_variadic_ctor_cxx11.cpp +3 -0
  504. polyscope-2.5.0/deps/eigen/doc/snippets/BiCGSTAB_simple.cpp +11 -0
  505. polyscope-2.5.0/deps/eigen/doc/snippets/BiCGSTAB_step_by_step.cpp +14 -0
  506. polyscope-2.5.0/deps/eigen/doc/snippets/CMakeLists.txt +36 -0
  507. polyscope-2.5.0/deps/eigen/doc/snippets/ColPivHouseholderQR_solve.cpp +8 -0
  508. polyscope-2.5.0/deps/eigen/doc/snippets/ComplexEigenSolver_compute.cpp +16 -0
  509. polyscope-2.5.0/deps/eigen/doc/snippets/ComplexEigenSolver_eigenvalues.cpp +4 -0
  510. polyscope-2.5.0/deps/eigen/doc/snippets/ComplexEigenSolver_eigenvectors.cpp +4 -0
  511. polyscope-2.5.0/deps/eigen/doc/snippets/ComplexSchur_compute.cpp +6 -0
  512. polyscope-2.5.0/deps/eigen/doc/snippets/ComplexSchur_matrixT.cpp +4 -0
  513. polyscope-2.5.0/deps/eigen/doc/snippets/ComplexSchur_matrixU.cpp +4 -0
  514. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_abs.cpp +2 -0
  515. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_abs2.cpp +2 -0
  516. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_acos.cpp +2 -0
  517. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_arg.cpp +3 -0
  518. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_array_power_array.cpp +4 -0
  519. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_asin.cpp +2 -0
  520. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_atan.cpp +2 -0
  521. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_boolean_and.cpp +2 -0
  522. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_boolean_not.cpp +5 -0
  523. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_boolean_or.cpp +2 -0
  524. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_boolean_xor.cpp +2 -0
  525. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_ceil.cpp +3 -0
  526. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_cos.cpp +2 -0
  527. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_cosh.cpp +2 -0
  528. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_cube.cpp +2 -0
  529. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_equal_equal.cpp +2 -0
  530. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_exp.cpp +2 -0
  531. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_floor.cpp +3 -0
  532. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_greater.cpp +2 -0
  533. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_greater_equal.cpp +2 -0
  534. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_inverse.cpp +2 -0
  535. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_isFinite.cpp +5 -0
  536. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_isInf.cpp +5 -0
  537. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_isNaN.cpp +5 -0
  538. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_less.cpp +2 -0
  539. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_less_equal.cpp +2 -0
  540. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_log.cpp +2 -0
  541. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_log10.cpp +2 -0
  542. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_max.cpp +2 -0
  543. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_min.cpp +2 -0
  544. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_minus.cpp +2 -0
  545. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_minus_equal.cpp +3 -0
  546. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_not_equal.cpp +2 -0
  547. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_plus.cpp +2 -0
  548. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_plus_equal.cpp +3 -0
  549. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_pow.cpp +2 -0
  550. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_product.cpp +4 -0
  551. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_quotient.cpp +2 -0
  552. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_rint.cpp +3 -0
  553. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_round.cpp +3 -0
  554. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_scalar_power_array.cpp +2 -0
  555. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_sign.cpp +2 -0
  556. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_sin.cpp +2 -0
  557. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_sinh.cpp +2 -0
  558. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_slash_equal.cpp +3 -0
  559. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_sqrt.cpp +2 -0
  560. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_square.cpp +2 -0
  561. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_tan.cpp +2 -0
  562. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_tanh.cpp +2 -0
  563. polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_times_equal.cpp +3 -0
  564. polyscope-2.5.0/deps/eigen/doc/snippets/DenseBase_LinSpaced.cpp +2 -0
  565. polyscope-2.5.0/deps/eigen/doc/snippets/DenseBase_LinSpacedInt.cpp +8 -0
  566. polyscope-2.5.0/deps/eigen/doc/snippets/DenseBase_LinSpaced_seq_deprecated.cpp +2 -0
  567. polyscope-2.5.0/deps/eigen/doc/snippets/DenseBase_setLinSpaced.cpp +3 -0
  568. polyscope-2.5.0/deps/eigen/doc/snippets/DirectionWise_hnormalized.cpp +6 -0
  569. polyscope-2.5.0/deps/eigen/doc/snippets/DirectionWise_replicate.cpp +4 -0
  570. polyscope-2.5.0/deps/eigen/doc/snippets/DirectionWise_replicate_int.cpp +4 -0
  571. polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_EigenSolver_MatrixType.cpp +16 -0
  572. polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_compute.cpp +6 -0
  573. polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_eigenvalues.cpp +4 -0
  574. polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_eigenvectors.cpp +4 -0
  575. polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_pseudoEigenvectors.cpp +9 -0
  576. polyscope-2.5.0/deps/eigen/doc/snippets/FullPivHouseholderQR_solve.cpp +8 -0
  577. polyscope-2.5.0/deps/eigen/doc/snippets/FullPivLU_image.cpp +9 -0
  578. polyscope-2.5.0/deps/eigen/doc/snippets/FullPivLU_kernel.cpp +7 -0
  579. polyscope-2.5.0/deps/eigen/doc/snippets/FullPivLU_solve.cpp +11 -0
  580. polyscope-2.5.0/deps/eigen/doc/snippets/GeneralizedEigenSolver.cpp +7 -0
  581. polyscope-2.5.0/deps/eigen/doc/snippets/HessenbergDecomposition_compute.cpp +6 -0
  582. polyscope-2.5.0/deps/eigen/doc/snippets/HessenbergDecomposition_matrixH.cpp +8 -0
  583. polyscope-2.5.0/deps/eigen/doc/snippets/HessenbergDecomposition_packedMatrix.cpp +9 -0
  584. polyscope-2.5.0/deps/eigen/doc/snippets/HouseholderQR_householderQ.cpp +7 -0
  585. polyscope-2.5.0/deps/eigen/doc/snippets/HouseholderQR_solve.cpp +9 -0
  586. polyscope-2.5.0/deps/eigen/doc/snippets/HouseholderSequence_HouseholderSequence.cpp +31 -0
  587. polyscope-2.5.0/deps/eigen/doc/snippets/IOFormat.cpp +14 -0
  588. polyscope-2.5.0/deps/eigen/doc/snippets/JacobiSVD_basic.cpp +9 -0
  589. polyscope-2.5.0/deps/eigen/doc/snippets/Jacobi_makeGivens.cpp +6 -0
  590. polyscope-2.5.0/deps/eigen/doc/snippets/Jacobi_makeJacobi.cpp +8 -0
  591. polyscope-2.5.0/deps/eigen/doc/snippets/LLT_example.cpp +12 -0
  592. polyscope-2.5.0/deps/eigen/doc/snippets/LLT_solve.cpp +8 -0
  593. polyscope-2.5.0/deps/eigen/doc/snippets/LeastSquaresNormalEquations.cpp +4 -0
  594. polyscope-2.5.0/deps/eigen/doc/snippets/LeastSquaresQR.cpp +4 -0
  595. polyscope-2.5.0/deps/eigen/doc/snippets/Map_general_stride.cpp +5 -0
  596. polyscope-2.5.0/deps/eigen/doc/snippets/Map_inner_stride.cpp +5 -0
  597. polyscope-2.5.0/deps/eigen/doc/snippets/Map_outer_stride.cpp +3 -0
  598. polyscope-2.5.0/deps/eigen/doc/snippets/Map_placement_new.cpp +5 -0
  599. polyscope-2.5.0/deps/eigen/doc/snippets/Map_simple.cpp +3 -0
  600. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_adjoint.cpp +3 -0
  601. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_all.cpp +7 -0
  602. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_applyOnTheLeft.cpp +7 -0
  603. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_applyOnTheRight.cpp +9 -0
  604. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_array.cpp +4 -0
  605. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_array_const.cpp +4 -0
  606. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_asDiagonal.cpp +1 -0
  607. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_block_int_int.cpp +5 -0
  608. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_block_int_int_int_int.cpp +5 -0
  609. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_bottomLeftCorner_int_int.cpp +6 -0
  610. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_bottomRightCorner_int_int.cpp +6 -0
  611. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_bottomRows_int.cpp +6 -0
  612. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cast.cpp +3 -0
  613. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_col.cpp +3 -0
  614. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_colwise.cpp +5 -0
  615. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_colwise_iterator_cxx11.cpp +12 -0
  616. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_computeInverseAndDetWithCheck.cpp +13 -0
  617. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_computeInverseWithCheck.cpp +11 -0
  618. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseAbs.cpp +4 -0
  619. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseAbs2.cpp +4 -0
  620. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseEqual.cpp +7 -0
  621. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseInverse.cpp +4 -0
  622. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseMax.cpp +2 -0
  623. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseMin.cpp +2 -0
  624. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseNotEqual.cpp +7 -0
  625. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseProduct.cpp +4 -0
  626. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseQuotient.cpp +2 -0
  627. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseSign.cpp +4 -0
  628. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp +2 -0
  629. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_diagonal.cpp +4 -0
  630. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_diagonal_int.cpp +5 -0
  631. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_diagonal_template_int.cpp +5 -0
  632. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_eigenvalues.cpp +3 -0
  633. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_end_int.cpp +5 -0
  634. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_eval.cpp +12 -0
  635. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_fixedBlock_int_int.cpp +5 -0
  636. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_hnormalized.cpp +6 -0
  637. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_homogeneous.cpp +6 -0
  638. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_identity.cpp +1 -0
  639. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_identity_int_int.cpp +1 -0
  640. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_inverse.cpp +3 -0
  641. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isDiagonal.cpp +6 -0
  642. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isIdentity.cpp +5 -0
  643. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isOnes.cpp +5 -0
  644. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isOrthogonal.cpp +6 -0
  645. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isUnitary.cpp +5 -0
  646. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isZero.cpp +5 -0
  647. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_leftCols_int.cpp +6 -0
  648. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_noalias.cpp +3 -0
  649. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_ones.cpp +2 -0
  650. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_ones_int.cpp +2 -0
  651. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_ones_int_int.cpp +1 -0
  652. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_operatorNorm.cpp +3 -0
  653. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_prod.cpp +3 -0
  654. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_random.cpp +1 -0
  655. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_random_int.cpp +1 -0
  656. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_random_int_int.cpp +1 -0
  657. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_replicate.cpp +4 -0
  658. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_replicate_int_int.cpp +4 -0
  659. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reshaped_auto.cpp +4 -0
  660. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reshaped_fixed.cpp +3 -0
  661. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reshaped_int_int.cpp +3 -0
  662. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reshaped_to_vector.cpp +4 -0
  663. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reverse.cpp +8 -0
  664. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_rightCols_int.cpp +6 -0
  665. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_row.cpp +3 -0
  666. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_rowwise.cpp +5 -0
  667. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_segment_int_int.cpp +5 -0
  668. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_select.cpp +6 -0
  669. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_selfadjointView.cpp +6 -0
  670. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_set.cpp +13 -0
  671. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_setIdentity.cpp +3 -0
  672. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_setOnes.cpp +3 -0
  673. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_setRandom.cpp +3 -0
  674. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_setZero.cpp +3 -0
  675. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_start_int.cpp +5 -0
  676. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_bottomRows.cpp +6 -0
  677. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_end.cpp +5 -0
  678. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_block_int_int_int_int.cpp +5 -0
  679. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner.cpp +6 -0
  680. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp +6 -0
  681. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner.cpp +6 -0
  682. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner_int_int.cpp +6 -0
  683. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner.cpp +6 -0
  684. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner_int_int.cpp +6 -0
  685. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner.cpp +6 -0
  686. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner_int_int.cpp +6 -0
  687. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_leftCols.cpp +6 -0
  688. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_rightCols.cpp +6 -0
  689. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_segment.cpp +5 -0
  690. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_start.cpp +5 -0
  691. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_topRows.cpp +6 -0
  692. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_topLeftCorner_int_int.cpp +6 -0
  693. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_topRightCorner_int_int.cpp +6 -0
  694. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_topRows_int.cpp +6 -0
  695. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_transpose.cpp +8 -0
  696. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_triangularView.cpp +9 -0
  697. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_zero.cpp +2 -0
  698. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_zero_int.cpp +2 -0
  699. polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_zero_int_int.cpp +1 -0
  700. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_Map_stride.cpp +7 -0
  701. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_initializer_list_23_cxx11.cpp +5 -0
  702. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_initializer_list_vector_cxx11.cpp +2 -0
  703. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_resize_NoChange_int.cpp +3 -0
  704. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_resize_int.cpp +6 -0
  705. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_resize_int_NoChange.cpp +3 -0
  706. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_resize_int_int.cpp +9 -0
  707. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setConstant_int.cpp +3 -0
  708. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setConstant_int_int.cpp +3 -0
  709. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setIdentity_int_int.cpp +3 -0
  710. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setOnes_int.cpp +3 -0
  711. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setOnes_int_int.cpp +3 -0
  712. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setRandom_int.cpp +3 -0
  713. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setRandom_int_int.cpp +3 -0
  714. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setZero_int.cpp +3 -0
  715. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setZero_int_int.cpp +3 -0
  716. polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_variadic_ctor_cxx11.cpp +3 -0
  717. polyscope-2.5.0/deps/eigen/doc/snippets/PartialPivLU_solve.cpp +7 -0
  718. polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_count.cpp +5 -0
  719. polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_maxCoeff.cpp +3 -0
  720. polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_minCoeff.cpp +3 -0
  721. polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_norm.cpp +3 -0
  722. polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_prod.cpp +3 -0
  723. polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_squaredNorm.cpp +3 -0
  724. polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_sum.cpp +3 -0
  725. polyscope-2.5.0/deps/eigen/doc/snippets/RealQZ_compute.cpp +17 -0
  726. polyscope-2.5.0/deps/eigen/doc/snippets/RealSchur_RealSchur_MatrixType.cpp +10 -0
  727. polyscope-2.5.0/deps/eigen/doc/snippets/RealSchur_compute.cpp +6 -0
  728. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp +7 -0
  729. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp +17 -0
  730. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp +16 -0
  731. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType.cpp +7 -0
  732. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType2.cpp +9 -0
  733. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_eigenvalues.cpp +4 -0
  734. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_eigenvectors.cpp +4 -0
  735. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_operatorInverseSqrt.cpp +9 -0
  736. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_operatorSqrt.cpp +8 -0
  737. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointView_eigenvalues.cpp +3 -0
  738. polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointView_operatorNorm.cpp +3 -0
  739. polyscope-2.5.0/deps/eigen/doc/snippets/Slicing_arrayexpr.cpp +4 -0
  740. polyscope-2.5.0/deps/eigen/doc/snippets/Slicing_custom_padding_cxx11.cpp +12 -0
  741. polyscope-2.5.0/deps/eigen/doc/snippets/Slicing_rawarray_cxx11.cpp +5 -0
  742. polyscope-2.5.0/deps/eigen/doc/snippets/Slicing_stdvector_cxx11.cpp +4 -0
  743. polyscope-2.5.0/deps/eigen/doc/snippets/SparseMatrix_coeffs.cpp +9 -0
  744. polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_block.cpp +7 -0
  745. polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_block_correct.cpp +7 -0
  746. polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_cwise.cpp +20 -0
  747. polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult1.cpp +4 -0
  748. polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult2.cpp +10 -0
  749. polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult3.cpp +4 -0
  750. polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult4.cpp +5 -0
  751. polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult5.cpp +5 -0
  752. polyscope-2.5.0/deps/eigen/doc/snippets/TopicStorageOrders_example.cpp +18 -0
  753. polyscope-2.5.0/deps/eigen/doc/snippets/Triangular_solve.cpp +11 -0
  754. polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_Tridiagonalization_MatrixType.cpp +9 -0
  755. polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_compute.cpp +9 -0
  756. polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_decomposeInPlace.cpp +10 -0
  757. polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_diagonal.cpp +13 -0
  758. polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_householderCoefficients.cpp +6 -0
  759. polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_packedMatrix.cpp +8 -0
  760. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_Block.cpp +5 -0
  761. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_CommaTemporary.cpp +4 -0
  762. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_Join.cpp +11 -0
  763. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_LinSpaced.cpp +7 -0
  764. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_ThreeWays.cpp +20 -0
  765. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_Zero.cpp +13 -0
  766. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_Map_rowmajor.cpp +7 -0
  767. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_Map_using.cpp +21 -0
  768. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_ReshapeMat2Mat.cpp +6 -0
  769. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_ReshapeMat2Vec.cpp +11 -0
  770. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_SlicingCol.cpp +11 -0
  771. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_SlicingVec.cpp +4 -0
  772. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_commainit_01.cpp +5 -0
  773. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_commainit_01b.cpp +5 -0
  774. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_commainit_02.cpp +7 -0
  775. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_range_for_loop_1d_cxx11.cpp +4 -0
  776. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp +5 -0
  777. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp +5 -0
  778. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_reshaped_vs_resize_2.cpp +6 -0
  779. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_matrix_inverse.cpp +6 -0
  780. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_multiple_rhs.cpp +10 -0
  781. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_reuse_decomposition.cpp +13 -0
  782. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_singular.cpp +9 -0
  783. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_triangular.cpp +8 -0
  784. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_triangular_inplace.cpp +6 -0
  785. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_std_sort.cpp +4 -0
  786. polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp +5 -0
  787. polyscope-2.5.0/deps/eigen/doc/snippets/VectorwiseOp_homogeneous.cpp +6 -0
  788. polyscope-2.5.0/deps/eigen/doc/snippets/Vectorwise_reverse.cpp +10 -0
  789. polyscope-2.5.0/deps/eigen/doc/snippets/class_FullPivLU.cpp +16 -0
  790. polyscope-2.5.0/deps/eigen/doc/snippets/compile_snippet.cpp.in +23 -0
  791. polyscope-2.5.0/deps/eigen/doc/snippets/tut_arithmetic_redux_minmax.cpp +12 -0
  792. polyscope-2.5.0/deps/eigen/doc/snippets/tut_arithmetic_transpose_aliasing.cpp +5 -0
  793. polyscope-2.5.0/deps/eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp +12 -0
  794. polyscope-2.5.0/deps/eigen/doc/snippets/tut_arithmetic_transpose_inplace.cpp +6 -0
  795. polyscope-2.5.0/deps/eigen/doc/snippets/tut_matrix_assignment_resizing.cpp +5 -0
  796. polyscope-2.5.0/deps/eigen/doc/special_examples/CMakeLists.txt +34 -0
  797. polyscope-2.5.0/deps/eigen/doc/special_examples/Tutorial_sparse_example.cpp +38 -0
  798. polyscope-2.5.0/deps/eigen/doc/special_examples/Tutorial_sparse_example_details.cpp +44 -0
  799. polyscope-2.5.0/deps/eigen/doc/special_examples/random_cpp11.cpp +14 -0
  800. polyscope-2.5.0/deps/eigen/doc/tutorial.cpp +62 -0
  801. polyscope-2.5.0/deps/eigen/eigen3.pc.in +9 -0
  802. polyscope-2.5.0/deps/eigen/failtest/CMakeLists.txt +70 -0
  803. polyscope-2.5.0/deps/eigen/failtest/bdcsvd_int.cpp +14 -0
  804. polyscope-2.5.0/deps/eigen/failtest/block_nonconst_ctor_on_const_xpr_0.cpp +15 -0
  805. polyscope-2.5.0/deps/eigen/failtest/block_nonconst_ctor_on_const_xpr_1.cpp +15 -0
  806. polyscope-2.5.0/deps/eigen/failtest/block_nonconst_ctor_on_const_xpr_2.cpp +16 -0
  807. polyscope-2.5.0/deps/eigen/failtest/block_on_const_type_actually_const_0.cpp +16 -0
  808. polyscope-2.5.0/deps/eigen/failtest/block_on_const_type_actually_const_1.cpp +16 -0
  809. polyscope-2.5.0/deps/eigen/failtest/colpivqr_int.cpp +14 -0
  810. polyscope-2.5.0/deps/eigen/failtest/const_qualified_block_method_retval_0.cpp +15 -0
  811. polyscope-2.5.0/deps/eigen/failtest/const_qualified_block_method_retval_1.cpp +15 -0
  812. polyscope-2.5.0/deps/eigen/failtest/const_qualified_diagonal_method_retval.cpp +15 -0
  813. polyscope-2.5.0/deps/eigen/failtest/const_qualified_transpose_method_retval.cpp +15 -0
  814. polyscope-2.5.0/deps/eigen/failtest/cwiseunaryview_nonconst_ctor_on_const_xpr.cpp +15 -0
  815. polyscope-2.5.0/deps/eigen/failtest/cwiseunaryview_on_const_type_actually_const.cpp +16 -0
  816. polyscope-2.5.0/deps/eigen/failtest/diagonal_nonconst_ctor_on_const_xpr.cpp +15 -0
  817. polyscope-2.5.0/deps/eigen/failtest/diagonal_on_const_type_actually_const.cpp +16 -0
  818. polyscope-2.5.0/deps/eigen/failtest/eigensolver_cplx.cpp +14 -0
  819. polyscope-2.5.0/deps/eigen/failtest/eigensolver_int.cpp +14 -0
  820. polyscope-2.5.0/deps/eigen/failtest/failtest_sanity_check.cpp +5 -0
  821. polyscope-2.5.0/deps/eigen/failtest/fullpivlu_int.cpp +14 -0
  822. polyscope-2.5.0/deps/eigen/failtest/fullpivqr_int.cpp +14 -0
  823. polyscope-2.5.0/deps/eigen/failtest/initializer_list_1.cpp +14 -0
  824. polyscope-2.5.0/deps/eigen/failtest/initializer_list_2.cpp +16 -0
  825. polyscope-2.5.0/deps/eigen/failtest/jacobisvd_int.cpp +14 -0
  826. polyscope-2.5.0/deps/eigen/failtest/ldlt_int.cpp +14 -0
  827. polyscope-2.5.0/deps/eigen/failtest/llt_int.cpp +14 -0
  828. polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_0.cpp +15 -0
  829. polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_1.cpp +15 -0
  830. polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_2.cpp +15 -0
  831. polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_3.cpp +15 -0
  832. polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_4.cpp +15 -0
  833. polyscope-2.5.0/deps/eigen/failtest/map_on_const_type_actually_const_0.cpp +15 -0
  834. polyscope-2.5.0/deps/eigen/failtest/map_on_const_type_actually_const_1.cpp +15 -0
  835. polyscope-2.5.0/deps/eigen/failtest/partialpivlu_int.cpp +14 -0
  836. polyscope-2.5.0/deps/eigen/failtest/qr_int.cpp +14 -0
  837. polyscope-2.5.0/deps/eigen/failtest/ref_1.cpp +18 -0
  838. polyscope-2.5.0/deps/eigen/failtest/ref_2.cpp +15 -0
  839. polyscope-2.5.0/deps/eigen/failtest/ref_3.cpp +15 -0
  840. polyscope-2.5.0/deps/eigen/failtest/ref_4.cpp +15 -0
  841. polyscope-2.5.0/deps/eigen/failtest/ref_5.cpp +16 -0
  842. polyscope-2.5.0/deps/eigen/failtest/selfadjointview_nonconst_ctor_on_const_xpr.cpp +15 -0
  843. polyscope-2.5.0/deps/eigen/failtest/selfadjointview_on_const_type_actually_const.cpp +16 -0
  844. polyscope-2.5.0/deps/eigen/failtest/sparse_ref_1.cpp +18 -0
  845. polyscope-2.5.0/deps/eigen/failtest/sparse_ref_2.cpp +15 -0
  846. polyscope-2.5.0/deps/eigen/failtest/sparse_ref_3.cpp +15 -0
  847. polyscope-2.5.0/deps/eigen/failtest/sparse_ref_4.cpp +15 -0
  848. polyscope-2.5.0/deps/eigen/failtest/sparse_ref_5.cpp +16 -0
  849. polyscope-2.5.0/deps/eigen/failtest/sparse_storage_mismatch.cpp +16 -0
  850. polyscope-2.5.0/deps/eigen/failtest/swap_1.cpp +14 -0
  851. polyscope-2.5.0/deps/eigen/failtest/swap_2.cpp +14 -0
  852. polyscope-2.5.0/deps/eigen/failtest/ternary_1.cpp +13 -0
  853. polyscope-2.5.0/deps/eigen/failtest/ternary_2.cpp +13 -0
  854. polyscope-2.5.0/deps/eigen/failtest/transpose_nonconst_ctor_on_const_xpr.cpp +15 -0
  855. polyscope-2.5.0/deps/eigen/failtest/transpose_on_const_type_actually_const.cpp +16 -0
  856. polyscope-2.5.0/deps/eigen/failtest/triangularview_nonconst_ctor_on_const_xpr.cpp +15 -0
  857. polyscope-2.5.0/deps/eigen/failtest/triangularview_on_const_type_actually_const.cpp +16 -0
  858. polyscope-2.5.0/deps/eigen/lapack/CMakeLists.txt +451 -0
  859. polyscope-2.5.0/deps/eigen/lapack/cholesky.cpp +72 -0
  860. polyscope-2.5.0/deps/eigen/lapack/clacgv.f +116 -0
  861. polyscope-2.5.0/deps/eigen/lapack/cladiv.f +97 -0
  862. polyscope-2.5.0/deps/eigen/lapack/clarf.f +232 -0
  863. polyscope-2.5.0/deps/eigen/lapack/clarfb.f +771 -0
  864. polyscope-2.5.0/deps/eigen/lapack/clarfg.f +203 -0
  865. polyscope-2.5.0/deps/eigen/lapack/clarft.f +328 -0
  866. polyscope-2.5.0/deps/eigen/lapack/complex_double.cpp +18 -0
  867. polyscope-2.5.0/deps/eigen/lapack/complex_single.cpp +18 -0
  868. polyscope-2.5.0/deps/eigen/lapack/dladiv.f +128 -0
  869. polyscope-2.5.0/deps/eigen/lapack/dlamch.f +189 -0
  870. polyscope-2.5.0/deps/eigen/lapack/dlapy2.f +104 -0
  871. polyscope-2.5.0/deps/eigen/lapack/dlapy3.f +111 -0
  872. polyscope-2.5.0/deps/eigen/lapack/dlarf.f +227 -0
  873. polyscope-2.5.0/deps/eigen/lapack/dlarfb.f +762 -0
  874. polyscope-2.5.0/deps/eigen/lapack/dlarfg.f +196 -0
  875. polyscope-2.5.0/deps/eigen/lapack/dlarft.f +326 -0
  876. polyscope-2.5.0/deps/eigen/lapack/double.cpp +18 -0
  877. polyscope-2.5.0/deps/eigen/lapack/dsecnd_NONE.f +52 -0
  878. polyscope-2.5.0/deps/eigen/lapack/eigenvalues.cpp +62 -0
  879. polyscope-2.5.0/deps/eigen/lapack/ilaclc.f +118 -0
  880. polyscope-2.5.0/deps/eigen/lapack/ilaclr.f +121 -0
  881. polyscope-2.5.0/deps/eigen/lapack/iladlc.f +118 -0
  882. polyscope-2.5.0/deps/eigen/lapack/iladlr.f +121 -0
  883. polyscope-2.5.0/deps/eigen/lapack/ilaslc.f +118 -0
  884. polyscope-2.5.0/deps/eigen/lapack/ilaslr.f +121 -0
  885. polyscope-2.5.0/deps/eigen/lapack/ilazlc.f +118 -0
  886. polyscope-2.5.0/deps/eigen/lapack/ilazlr.f +121 -0
  887. polyscope-2.5.0/deps/eigen/lapack/lapack_common.h +29 -0
  888. polyscope-2.5.0/deps/eigen/lapack/lu.cpp +89 -0
  889. polyscope-2.5.0/deps/eigen/lapack/second_NONE.f +52 -0
  890. polyscope-2.5.0/deps/eigen/lapack/single.cpp +18 -0
  891. polyscope-2.5.0/deps/eigen/lapack/sladiv.f +128 -0
  892. polyscope-2.5.0/deps/eigen/lapack/slamch.f +192 -0
  893. polyscope-2.5.0/deps/eigen/lapack/slapy2.f +104 -0
  894. polyscope-2.5.0/deps/eigen/lapack/slapy3.f +111 -0
  895. polyscope-2.5.0/deps/eigen/lapack/slarf.f +227 -0
  896. polyscope-2.5.0/deps/eigen/lapack/slarfb.f +763 -0
  897. polyscope-2.5.0/deps/eigen/lapack/slarfg.f +196 -0
  898. polyscope-2.5.0/deps/eigen/lapack/slarft.f +326 -0
  899. polyscope-2.5.0/deps/eigen/lapack/svd.cpp +138 -0
  900. polyscope-2.5.0/deps/eigen/lapack/zlacgv.f +116 -0
  901. polyscope-2.5.0/deps/eigen/lapack/zladiv.f +97 -0
  902. polyscope-2.5.0/deps/eigen/lapack/zlarf.f +232 -0
  903. polyscope-2.5.0/deps/eigen/lapack/zlarfb.f +774 -0
  904. polyscope-2.5.0/deps/eigen/lapack/zlarfg.f +203 -0
  905. polyscope-2.5.0/deps/eigen/lapack/zlarft.f +327 -0
  906. polyscope-2.5.0/deps/eigen/scripts/CMakeLists.txt +6 -0
  907. polyscope-2.5.0/deps/eigen/scripts/cdashtesting.cmake.in +49 -0
  908. polyscope-2.5.0/deps/eigen/scripts/check.in +21 -0
  909. polyscope-2.5.0/deps/eigen/scripts/debug.in +3 -0
  910. polyscope-2.5.0/deps/eigen/scripts/eigen_gen_credits.cpp +232 -0
  911. polyscope-2.5.0/deps/eigen/scripts/eigen_gen_docs +24 -0
  912. polyscope-2.5.0/deps/eigen/scripts/eigen_gen_split_test_help.cmake +11 -0
  913. polyscope-2.5.0/deps/eigen/scripts/eigen_monitor_perf.sh +25 -0
  914. polyscope-2.5.0/deps/eigen/scripts/release.in +3 -0
  915. polyscope-2.5.0/deps/eigen/scripts/relicense.py +69 -0
  916. polyscope-2.5.0/deps/eigen/signature_of_eigen3_matrix_library +1 -0
  917. polyscope-2.5.0/deps/eigen/test/AnnoyingScalar.h +158 -0
  918. polyscope-2.5.0/deps/eigen/test/CMakeLists.txt +456 -0
  919. polyscope-2.5.0/deps/eigen/test/adjoint.cpp +219 -0
  920. polyscope-2.5.0/deps/eigen/test/array_cwise.cpp +571 -0
  921. polyscope-2.5.0/deps/eigen/test/array_for_matrix.cpp +307 -0
  922. polyscope-2.5.0/deps/eigen/test/array_of_string.cpp +32 -0
  923. polyscope-2.5.0/deps/eigen/test/array_replicate.cpp +81 -0
  924. polyscope-2.5.0/deps/eigen/test/array_reverse.cpp +204 -0
  925. polyscope-2.5.0/deps/eigen/test/bandmatrix.cpp +71 -0
  926. polyscope-2.5.0/deps/eigen/test/basicstuff.cpp +293 -0
  927. polyscope-2.5.0/deps/eigen/test/bdcsvd.cpp +118 -0
  928. polyscope-2.5.0/deps/eigen/test/bicgstab.cpp +34 -0
  929. polyscope-2.5.0/deps/eigen/test/block.cpp +316 -0
  930. polyscope-2.5.0/deps/eigen/test/boostmultiprec.cpp +208 -0
  931. polyscope-2.5.0/deps/eigen/test/bug1213.cpp +13 -0
  932. polyscope-2.5.0/deps/eigen/test/bug1213.h +8 -0
  933. polyscope-2.5.0/deps/eigen/test/bug1213_main.cpp +18 -0
  934. polyscope-2.5.0/deps/eigen/test/cholesky.cpp +532 -0
  935. polyscope-2.5.0/deps/eigen/test/cholmod_support.cpp +69 -0
  936. polyscope-2.5.0/deps/eigen/test/commainitializer.cpp +106 -0
  937. polyscope-2.5.0/deps/eigen/test/conjugate_gradient.cpp +34 -0
  938. polyscope-2.5.0/deps/eigen/test/conservative_resize.cpp +162 -0
  939. polyscope-2.5.0/deps/eigen/test/constructor.cpp +98 -0
  940. polyscope-2.5.0/deps/eigen/test/corners.cpp +117 -0
  941. polyscope-2.5.0/deps/eigen/test/ctorleak.cpp +81 -0
  942. polyscope-2.5.0/deps/eigen/test/denseLM.cpp +190 -0
  943. polyscope-2.5.0/deps/eigen/test/dense_storage.cpp +107 -0
  944. polyscope-2.5.0/deps/eigen/test/determinant.cpp +66 -0
  945. polyscope-2.5.0/deps/eigen/test/diagonal.cpp +105 -0
  946. polyscope-2.5.0/deps/eigen/test/diagonal_matrix_variadic_ctor.cpp +185 -0
  947. polyscope-2.5.0/deps/eigen/test/diagonalmatrices.cpp +173 -0
  948. polyscope-2.5.0/deps/eigen/test/dontalign.cpp +62 -0
  949. polyscope-2.5.0/deps/eigen/test/dynalloc.cpp +177 -0
  950. polyscope-2.5.0/deps/eigen/test/eigen2support.cpp +65 -0
  951. polyscope-2.5.0/deps/eigen/test/eigensolver_complex.cpp +176 -0
  952. polyscope-2.5.0/deps/eigen/test/eigensolver_generalized_real.cpp +103 -0
  953. polyscope-2.5.0/deps/eigen/test/eigensolver_generic.cpp +247 -0
  954. polyscope-2.5.0/deps/eigen/test/eigensolver_selfadjoint.cpp +273 -0
  955. polyscope-2.5.0/deps/eigen/test/evaluators.cpp +525 -0
  956. polyscope-2.5.0/deps/eigen/test/exceptions.cpp +49 -0
  957. polyscope-2.5.0/deps/eigen/test/fastmath.cpp +99 -0
  958. polyscope-2.5.0/deps/eigen/test/first_aligned.cpp +51 -0
  959. polyscope-2.5.0/deps/eigen/test/geo_alignedbox.cpp +196 -0
  960. polyscope-2.5.0/deps/eigen/test/geo_eulerangles.cpp +112 -0
  961. polyscope-2.5.0/deps/eigen/test/geo_homogeneous.cpp +125 -0
  962. polyscope-2.5.0/deps/eigen/test/geo_hyperplane.cpp +197 -0
  963. polyscope-2.5.0/deps/eigen/test/geo_orthomethods.cpp +133 -0
  964. polyscope-2.5.0/deps/eigen/test/geo_parametrizedline.cpp +130 -0
  965. polyscope-2.5.0/deps/eigen/test/geo_quaternion.cpp +331 -0
  966. polyscope-2.5.0/deps/eigen/test/geo_transformations.cpp +708 -0
  967. polyscope-2.5.0/deps/eigen/test/gpu_basic.cu +214 -0
  968. polyscope-2.5.0/deps/eigen/test/gpu_common.h +160 -0
  969. polyscope-2.5.0/deps/eigen/test/half_float.cpp +287 -0
  970. polyscope-2.5.0/deps/eigen/test/hessenberg.cpp +62 -0
  971. polyscope-2.5.0/deps/eigen/test/householder.cpp +148 -0
  972. polyscope-2.5.0/deps/eigen/test/incomplete_cholesky.cpp +69 -0
  973. polyscope-2.5.0/deps/eigen/test/indexed_view.cpp +452 -0
  974. polyscope-2.5.0/deps/eigen/test/initializer_list_construction.cpp +385 -0
  975. polyscope-2.5.0/deps/eigen/test/inplace_decomposition.cpp +110 -0
  976. polyscope-2.5.0/deps/eigen/test/integer_types.cpp +173 -0
  977. polyscope-2.5.0/deps/eigen/test/inverse.cpp +148 -0
  978. polyscope-2.5.0/deps/eigen/test/io.cpp +71 -0
  979. polyscope-2.5.0/deps/eigen/test/is_same_dense.cpp +41 -0
  980. polyscope-2.5.0/deps/eigen/test/jacobi.cpp +80 -0
  981. polyscope-2.5.0/deps/eigen/test/jacobisvd.cpp +144 -0
  982. polyscope-2.5.0/deps/eigen/test/klu_support.cpp +32 -0
  983. polyscope-2.5.0/deps/eigen/test/linearstructure.cpp +147 -0
  984. polyscope-2.5.0/deps/eigen/test/lscg.cpp +37 -0
  985. polyscope-2.5.0/deps/eigen/test/lu.cpp +252 -0
  986. polyscope-2.5.0/deps/eigen/test/main.h +850 -0
  987. polyscope-2.5.0/deps/eigen/test/mapped_matrix.cpp +207 -0
  988. polyscope-2.5.0/deps/eigen/test/mapstaticmethods.cpp +177 -0
  989. polyscope-2.5.0/deps/eigen/test/mapstride.cpp +234 -0
  990. polyscope-2.5.0/deps/eigen/test/meta.cpp +158 -0
  991. polyscope-2.5.0/deps/eigen/test/metis_support.cpp +25 -0
  992. polyscope-2.5.0/deps/eigen/test/miscmatrices.cpp +46 -0
  993. polyscope-2.5.0/deps/eigen/test/mixingtypes.cpp +328 -0
  994. polyscope-2.5.0/deps/eigen/test/mpl2only.cpp +24 -0
  995. polyscope-2.5.0/deps/eigen/test/nestbyvalue.cpp +37 -0
  996. polyscope-2.5.0/deps/eigen/test/nesting_ops.cpp +107 -0
  997. polyscope-2.5.0/deps/eigen/test/nomalloc.cpp +228 -0
  998. polyscope-2.5.0/deps/eigen/test/nullary.cpp +341 -0
  999. polyscope-2.5.0/deps/eigen/test/num_dimensions.cpp +90 -0
  1000. polyscope-2.5.0/deps/eigen/test/numext.cpp +54 -0
  1001. polyscope-2.5.0/deps/eigen/test/packetmath.cpp +812 -0
  1002. polyscope-2.5.0/deps/eigen/test/packetmath_test_shared.h +229 -0
  1003. polyscope-2.5.0/deps/eigen/test/pardiso_support.cpp +29 -0
  1004. polyscope-2.5.0/deps/eigen/test/pastix_support.cpp +54 -0
  1005. polyscope-2.5.0/deps/eigen/test/permutationmatrices.cpp +181 -0
  1006. polyscope-2.5.0/deps/eigen/test/prec_inverse_4x4.cpp +83 -0
  1007. polyscope-2.5.0/deps/eigen/test/product.h +259 -0
  1008. polyscope-2.5.0/deps/eigen/test/product_extra.cpp +374 -0
  1009. polyscope-2.5.0/deps/eigen/test/product_large.cpp +126 -0
  1010. polyscope-2.5.0/deps/eigen/test/product_mmtr.cpp +106 -0
  1011. polyscope-2.5.0/deps/eigen/test/product_notemporary.cpp +209 -0
  1012. polyscope-2.5.0/deps/eigen/test/product_selfadjoint.cpp +86 -0
  1013. polyscope-2.5.0/deps/eigen/test/product_small.cpp +297 -0
  1014. polyscope-2.5.0/deps/eigen/test/product_symm.cpp +125 -0
  1015. polyscope-2.5.0/deps/eigen/test/product_syrk.cpp +146 -0
  1016. polyscope-2.5.0/deps/eigen/test/product_trmm.cpp +137 -0
  1017. polyscope-2.5.0/deps/eigen/test/product_trmv.cpp +90 -0
  1018. polyscope-2.5.0/deps/eigen/test/product_trsolve.cpp +127 -0
  1019. polyscope-2.5.0/deps/eigen/test/qr.cpp +130 -0
  1020. polyscope-2.5.0/deps/eigen/test/qr_colpivoting.cpp +368 -0
  1021. polyscope-2.5.0/deps/eigen/test/qr_fullpivoting.cpp +159 -0
  1022. polyscope-2.5.0/deps/eigen/test/qtvector.cpp +156 -0
  1023. polyscope-2.5.0/deps/eigen/test/rand.cpp +118 -0
  1024. polyscope-2.5.0/deps/eigen/test/real_qz.cpp +94 -0
  1025. polyscope-2.5.0/deps/eigen/test/redux.cpp +183 -0
  1026. polyscope-2.5.0/deps/eigen/test/ref.cpp +294 -0
  1027. polyscope-2.5.0/deps/eigen/test/reshape.cpp +216 -0
  1028. polyscope-2.5.0/deps/eigen/test/resize.cpp +41 -0
  1029. polyscope-2.5.0/deps/eigen/test/rvalue_types.cpp +110 -0
  1030. polyscope-2.5.0/deps/eigen/test/schur_complex.cpp +91 -0
  1031. polyscope-2.5.0/deps/eigen/test/schur_real.cpp +110 -0
  1032. polyscope-2.5.0/deps/eigen/test/selfadjoint.cpp +75 -0
  1033. polyscope-2.5.0/deps/eigen/test/simplicial_cholesky.cpp +47 -0
  1034. polyscope-2.5.0/deps/eigen/test/sizeof.cpp +47 -0
  1035. polyscope-2.5.0/deps/eigen/test/sizeoverflow.cpp +64 -0
  1036. polyscope-2.5.0/deps/eigen/test/smallvectors.cpp +67 -0
  1037. polyscope-2.5.0/deps/eigen/test/solverbase.h +36 -0
  1038. polyscope-2.5.0/deps/eigen/test/sparse.h +208 -0
  1039. polyscope-2.5.0/deps/eigen/test/sparseLM.cpp +176 -0
  1040. polyscope-2.5.0/deps/eigen/test/sparse_basic.cpp +744 -0
  1041. polyscope-2.5.0/deps/eigen/test/sparse_block.cpp +322 -0
  1042. polyscope-2.5.0/deps/eigen/test/sparse_permutations.cpp +236 -0
  1043. polyscope-2.5.0/deps/eigen/test/sparse_product.cpp +475 -0
  1044. polyscope-2.5.0/deps/eigen/test/sparse_ref.cpp +139 -0
  1045. polyscope-2.5.0/deps/eigen/test/sparse_solver.h +568 -0
  1046. polyscope-2.5.0/deps/eigen/test/sparse_solvers.cpp +125 -0
  1047. polyscope-2.5.0/deps/eigen/test/sparse_vector.cpp +163 -0
  1048. polyscope-2.5.0/deps/eigen/test/sparselu.cpp +45 -0
  1049. polyscope-2.5.0/deps/eigen/test/sparseqr.cpp +149 -0
  1050. polyscope-2.5.0/deps/eigen/test/special_numbers.cpp +58 -0
  1051. polyscope-2.5.0/deps/eigen/test/split_test_helper.h +5994 -0
  1052. polyscope-2.5.0/deps/eigen/test/spqr_support.cpp +64 -0
  1053. polyscope-2.5.0/deps/eigen/test/stable_norm.cpp +239 -0
  1054. polyscope-2.5.0/deps/eigen/test/stddeque.cpp +130 -0
  1055. polyscope-2.5.0/deps/eigen/test/stddeque_overload.cpp +158 -0
  1056. polyscope-2.5.0/deps/eigen/test/stdlist.cpp +130 -0
  1057. polyscope-2.5.0/deps/eigen/test/stdlist_overload.cpp +192 -0
  1058. polyscope-2.5.0/deps/eigen/test/stdvector.cpp +158 -0
  1059. polyscope-2.5.0/deps/eigen/test/stdvector_overload.cpp +161 -0
  1060. polyscope-2.5.0/deps/eigen/test/stl_iterators.cpp +529 -0
  1061. polyscope-2.5.0/deps/eigen/test/superlu_support.cpp +23 -0
  1062. polyscope-2.5.0/deps/eigen/test/svd_common.h +505 -0
  1063. polyscope-2.5.0/deps/eigen/test/svd_fill.h +118 -0
  1064. polyscope-2.5.0/deps/eigen/test/swap.cpp +94 -0
  1065. polyscope-2.5.0/deps/eigen/test/symbolic_index.cpp +84 -0
  1066. polyscope-2.5.0/deps/eigen/test/triangular.cpp +292 -0
  1067. polyscope-2.5.0/deps/eigen/test/type_alias.cpp +48 -0
  1068. polyscope-2.5.0/deps/eigen/test/umeyama.cpp +183 -0
  1069. polyscope-2.5.0/deps/eigen/test/umfpack_support.cpp +34 -0
  1070. polyscope-2.5.0/deps/eigen/test/unalignedassert.cpp +180 -0
  1071. polyscope-2.5.0/deps/eigen/test/unalignedcount.cpp +60 -0
  1072. polyscope-2.5.0/deps/eigen/test/upperbidiagonalization.cpp +43 -0
  1073. polyscope-2.5.0/deps/eigen/test/vectorization_logic.cpp +445 -0
  1074. polyscope-2.5.0/deps/eigen/test/vectorwiseop.cpp +298 -0
  1075. polyscope-2.5.0/deps/eigen/test/visitor.cpp +133 -0
  1076. polyscope-2.5.0/deps/eigen/test/zerosized.cpp +111 -0
  1077. polyscope-2.5.0/deps/eigen/unsupported/CMakeLists.txt +9 -0
  1078. polyscope-2.5.0/deps/eigen/unsupported/Eigen/AdolcForward +156 -0
  1079. polyscope-2.5.0/deps/eigen/unsupported/Eigen/AlignedVector3 +234 -0
  1080. polyscope-2.5.0/deps/eigen/unsupported/Eigen/ArpackSupport +31 -0
  1081. polyscope-2.5.0/deps/eigen/unsupported/Eigen/AutoDiff +46 -0
  1082. polyscope-2.5.0/deps/eigen/unsupported/Eigen/BVH +95 -0
  1083. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CMakeLists.txt +32 -0
  1084. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/CMakeLists.txt +8 -0
  1085. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/Tensor +157 -0
  1086. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/TensorSymmetry +42 -0
  1087. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/ThreadPool +75 -0
  1088. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1817 -0
  1089. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +554 -0
  1090. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +329 -0
  1091. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +247 -0
  1092. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1153 -0
  1093. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1559 -0
  1094. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1094 -0
  1095. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +534 -0
  1096. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +394 -0
  1097. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +1021 -0
  1098. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +73 -0
  1099. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +6 -0
  1100. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1413 -0
  1101. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +575 -0
  1102. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1650 -0
  1103. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1679 -0
  1104. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +429 -0
  1105. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1132 -0
  1106. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +544 -0
  1107. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +214 -0
  1108. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +347 -0
  1109. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +135 -0
  1110. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +6 -0
  1111. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +104 -0
  1112. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +360 -0
  1113. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +1048 -0
  1114. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +407 -0
  1115. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +236 -0
  1116. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +490 -0
  1117. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +236 -0
  1118. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +984 -0
  1119. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +703 -0
  1120. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +388 -0
  1121. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +669 -0
  1122. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +396 -0
  1123. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +240 -0
  1124. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +191 -0
  1125. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +477 -0
  1126. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +302 -0
  1127. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +33 -0
  1128. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +93 -0
  1129. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +40 -0
  1130. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +79 -0
  1131. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +603 -0
  1132. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +738 -0
  1133. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +247 -0
  1134. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +82 -0
  1135. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +263 -0
  1136. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +233 -0
  1137. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +93 -0
  1138. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +343 -0
  1139. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +321 -0
  1140. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +1152 -0
  1141. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +708 -0
  1142. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +291 -0
  1143. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +350 -0
  1144. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +1003 -0
  1145. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +6 -0
  1146. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +967 -0
  1147. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +586 -0
  1148. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +454 -0
  1149. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +482 -0
  1150. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +313 -0
  1151. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +512 -0
  1152. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +485 -0
  1153. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +146 -0
  1154. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +362 -0
  1155. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +303 -0
  1156. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +264 -0
  1157. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +249 -0
  1158. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +629 -0
  1159. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +293 -0
  1160. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +236 -0
  1161. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +338 -0
  1162. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +669 -0
  1163. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +67 -0
  1164. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +249 -0
  1165. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +484 -0
  1166. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +236 -0
  1167. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +23 -0
  1168. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +40 -0
  1169. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +301 -0
  1170. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +48 -0
  1171. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +20 -0
  1172. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +537 -0
  1173. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +88 -0
  1174. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/util/EmulateArray.h +261 -0
  1175. polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +158 -0
  1176. polyscope-2.5.0/deps/eigen/unsupported/Eigen/EulerAngles +43 -0
  1177. polyscope-2.5.0/deps/eigen/unsupported/Eigen/FFT +424 -0
  1178. polyscope-2.5.0/deps/eigen/unsupported/Eigen/IterativeSolvers +46 -0
  1179. polyscope-2.5.0/deps/eigen/unsupported/Eigen/KroneckerProduct +36 -0
  1180. polyscope-2.5.0/deps/eigen/unsupported/Eigen/LevenbergMarquardt +49 -0
  1181. polyscope-2.5.0/deps/eigen/unsupported/Eigen/MPRealSupport +213 -0
  1182. polyscope-2.5.0/deps/eigen/unsupported/Eigen/MatrixFunctions +504 -0
  1183. polyscope-2.5.0/deps/eigen/unsupported/Eigen/MoreVectorization +24 -0
  1184. polyscope-2.5.0/deps/eigen/unsupported/Eigen/NonLinearOptimization +140 -0
  1185. polyscope-2.5.0/deps/eigen/unsupported/Eigen/NumericalDiff +56 -0
  1186. polyscope-2.5.0/deps/eigen/unsupported/Eigen/OpenGLSupport +322 -0
  1187. polyscope-2.5.0/deps/eigen/unsupported/Eigen/Polynomials +138 -0
  1188. polyscope-2.5.0/deps/eigen/unsupported/Eigen/Skyline +39 -0
  1189. polyscope-2.5.0/deps/eigen/unsupported/Eigen/SparseExtra +53 -0
  1190. polyscope-2.5.0/deps/eigen/unsupported/Eigen/SpecialFunctions +88 -0
  1191. polyscope-2.5.0/deps/eigen/unsupported/Eigen/Splines +35 -0
  1192. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +108 -0
  1193. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +730 -0
  1194. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +220 -0
  1195. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/BVH/BVAlgorithms.h +293 -0
  1196. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
  1197. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +790 -0
  1198. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/EulerAngles/CMakeLists.txt +6 -0
  1199. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/EulerAngles/EulerAngles.h +355 -0
  1200. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/EulerAngles/EulerSystem.h +305 -0
  1201. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/FFT/ei_fftw_impl.h +263 -0
  1202. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +420 -0
  1203. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +189 -0
  1204. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +511 -0
  1205. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/GMRES.h +335 -0
  1206. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +90 -0
  1207. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/IterationController.h +154 -0
  1208. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/MINRES.h +267 -0
  1209. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/Scaling.h +193 -0
  1210. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +305 -0
  1211. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/CopyrightMINPACK.txt +52 -0
  1212. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +84 -0
  1213. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +202 -0
  1214. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +160 -0
  1215. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +188 -0
  1216. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +396 -0
  1217. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +441 -0
  1218. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +569 -0
  1219. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +373 -0
  1220. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +705 -0
  1221. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +368 -0
  1222. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +117 -0
  1223. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +95 -0
  1224. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +601 -0
  1225. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +657 -0
  1226. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/chkder.h +66 -0
  1227. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/covar.h +70 -0
  1228. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +107 -0
  1229. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +79 -0
  1230. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +298 -0
  1231. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +91 -0
  1232. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +30 -0
  1233. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +99 -0
  1234. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +49 -0
  1235. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +130 -0
  1236. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Polynomials/Companion.h +275 -0
  1237. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +428 -0
  1238. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +143 -0
  1239. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +352 -0
  1240. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineMatrix.h +862 -0
  1241. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +212 -0
  1242. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineProduct.h +295 -0
  1243. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineStorage.h +259 -0
  1244. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineUtil.h +89 -0
  1245. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +122 -0
  1246. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +1079 -0
  1247. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +404 -0
  1248. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/MarketIO.h +282 -0
  1249. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +247 -0
  1250. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/RandomSetter.h +327 -0
  1251. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +286 -0
  1252. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +357 -0
  1253. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +66 -0
  1254. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1959 -0
  1255. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +130 -0
  1256. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +67 -0
  1257. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +167 -0
  1258. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +330 -0
  1259. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +58 -0
  1260. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2025 -0
  1261. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +79 -0
  1262. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/arch/GPU/GpuSpecialFunctions.h +369 -0
  1263. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Splines/Spline.h +507 -0
  1264. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Splines/SplineFitting.h +431 -0
  1265. polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Splines/SplineFwd.h +93 -0
  1266. polyscope-2.5.0/deps/eigen/unsupported/README.txt +50 -0
  1267. polyscope-2.5.0/deps/eigen/unsupported/bench/bench_svd.cpp +123 -0
  1268. polyscope-2.5.0/deps/eigen/unsupported/doc/CMakeLists.txt +4 -0
  1269. polyscope-2.5.0/deps/eigen/unsupported/doc/Overview.dox +31 -0
  1270. polyscope-2.5.0/deps/eigen/unsupported/doc/SYCL.dox +9 -0
  1271. polyscope-2.5.0/deps/eigen/unsupported/doc/eigendoxy_layout.xml.in +177 -0
  1272. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/BVH_Example.cpp +50 -0
  1273. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/CMakeLists.txt +24 -0
  1274. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/EulerAngles.cpp +46 -0
  1275. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/FFT.cpp +118 -0
  1276. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixExponential.cpp +16 -0
  1277. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixFunction.cpp +23 -0
  1278. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixLogarithm.cpp +15 -0
  1279. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixPower.cpp +16 -0
  1280. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixPower_optimal.cpp +17 -0
  1281. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixSine.cpp +20 -0
  1282. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixSinh.cpp +20 -0
  1283. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixSquareRoot.cpp +16 -0
  1284. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/PolynomialSolver1.cpp +53 -0
  1285. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/PolynomialUtils1.cpp +20 -0
  1286. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/SYCL/CMakeLists.txt +38 -0
  1287. polyscope-2.5.0/deps/eigen/unsupported/doc/examples/SYCL/CwiseMul.cpp +63 -0
  1288. polyscope-2.5.0/deps/eigen/unsupported/doc/snippets/CMakeLists.txt +26 -0
  1289. polyscope-2.5.0/deps/eigen/unsupported/test/BVH.cpp +222 -0
  1290. polyscope-2.5.0/deps/eigen/unsupported/test/CMakeLists.txt +425 -0
  1291. polyscope-2.5.0/deps/eigen/unsupported/test/EulerAngles.cpp +296 -0
  1292. polyscope-2.5.0/deps/eigen/unsupported/test/FFT.cpp +2 -0
  1293. polyscope-2.5.0/deps/eigen/unsupported/test/FFTW.cpp +262 -0
  1294. polyscope-2.5.0/deps/eigen/unsupported/test/NonLinearOptimization.cpp +1849 -0
  1295. polyscope-2.5.0/deps/eigen/unsupported/test/NumericalDiff.cpp +114 -0
  1296. polyscope-2.5.0/deps/eigen/unsupported/test/alignedvector3.cpp +87 -0
  1297. polyscope-2.5.0/deps/eigen/unsupported/test/autodiff.cpp +387 -0
  1298. polyscope-2.5.0/deps/eigen/unsupported/test/autodiff_scalar.cpp +101 -0
  1299. polyscope-2.5.0/deps/eigen/unsupported/test/bessel_functions.cpp +370 -0
  1300. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_eventcount.cpp +142 -0
  1301. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_maxsizevector.cpp +77 -0
  1302. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_meta.cpp +357 -0
  1303. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_non_blocking_thread_pool.cpp +178 -0
  1304. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_runqueue.cpp +235 -0
  1305. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_argmax.cpp +294 -0
  1306. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_argmax_gpu.cu +253 -0
  1307. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_argmax_sycl.cpp +257 -0
  1308. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_assign.cpp +370 -0
  1309. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_block_access.cpp +576 -0
  1310. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_block_eval.cpp +805 -0
  1311. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_block_io.cpp +437 -0
  1312. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_broadcast_sycl.cpp +144 -0
  1313. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_broadcasting.cpp +331 -0
  1314. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_builtins_sycl.cpp +354 -0
  1315. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_cast_float16_gpu.cu +79 -0
  1316. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_casts.cpp +115 -0
  1317. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_chipping.cpp +425 -0
  1318. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_chipping_sycl.cpp +623 -0
  1319. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_comparisons.cpp +84 -0
  1320. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu +100 -0
  1321. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_complex_gpu.cu +186 -0
  1322. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_concatenation.cpp +143 -0
  1323. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_concatenation_sycl.cpp +180 -0
  1324. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_const.cpp +62 -0
  1325. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_contract_gpu.cu +218 -0
  1326. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_contract_sycl.cpp +1026 -0
  1327. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_contraction.cpp +597 -0
  1328. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_convolution.cpp +150 -0
  1329. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_convolution_sycl.cpp +469 -0
  1330. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_custom_index.cpp +100 -0
  1331. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_custom_op.cpp +111 -0
  1332. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_custom_op_sycl.cpp +170 -0
  1333. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_device.cu +396 -0
  1334. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_device_sycl.cpp +77 -0
  1335. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_dimension.cpp +88 -0
  1336. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_empty.cpp +40 -0
  1337. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_executor.cpp +731 -0
  1338. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_expr.cpp +381 -0
  1339. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_fft.cpp +304 -0
  1340. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_fixed_size.cpp +261 -0
  1341. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_forced_eval.cpp +79 -0
  1342. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp +77 -0
  1343. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_generator.cpp +91 -0
  1344. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_generator_sycl.cpp +147 -0
  1345. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_gpu.cu +1643 -0
  1346. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_ifft.cpp +154 -0
  1347. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_image_op_sycl.cpp +103 -0
  1348. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_image_patch.cpp +809 -0
  1349. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_image_patch_sycl.cpp +1092 -0
  1350. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_index_list.cpp +385 -0
  1351. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_inflation.cpp +81 -0
  1352. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_inflation_sycl.cpp +136 -0
  1353. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_intdiv.cpp +147 -0
  1354. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_io.cpp +136 -0
  1355. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_layout_swap.cpp +61 -0
  1356. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp +126 -0
  1357. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_lvalue.cpp +42 -0
  1358. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_map.cpp +327 -0
  1359. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_math.cpp +46 -0
  1360. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_math_sycl.cpp +105 -0
  1361. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_mixed_indices.cpp +53 -0
  1362. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_morphing.cpp +509 -0
  1363. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_morphing_sycl.cpp +386 -0
  1364. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_move.cpp +81 -0
  1365. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_notification.cpp +64 -0
  1366. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_of_complex.cpp +103 -0
  1367. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_of_const_values.cpp +105 -0
  1368. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_of_float16_gpu.cu +498 -0
  1369. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_of_strings.cpp +152 -0
  1370. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_padding.cpp +93 -0
  1371. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_padding_sycl.cpp +157 -0
  1372. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_patch.cpp +172 -0
  1373. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_patch_sycl.cpp +249 -0
  1374. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_random.cpp +78 -0
  1375. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_random_gpu.cu +86 -0
  1376. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_random_sycl.cpp +100 -0
  1377. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reduction.cpp +531 -0
  1378. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reduction_gpu.cu +154 -0
  1379. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reduction_sycl.cpp +1014 -0
  1380. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_ref.cpp +248 -0
  1381. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reverse.cpp +190 -0
  1382. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reverse_sycl.cpp +253 -0
  1383. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_roundings.cpp +62 -0
  1384. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_scan.cpp +110 -0
  1385. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_scan_gpu.cu +78 -0
  1386. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_scan_sycl.cpp +141 -0
  1387. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_shuffling.cpp +228 -0
  1388. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_shuffling_sycl.cpp +117 -0
  1389. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_simple.cpp +327 -0
  1390. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_striding.cpp +119 -0
  1391. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_striding_sycl.cpp +203 -0
  1392. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_sugar.cpp +81 -0
  1393. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_sycl.cpp +361 -0
  1394. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_symmetry.cpp +818 -0
  1395. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_thread_local.cpp +149 -0
  1396. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_thread_pool.cpp +721 -0
  1397. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_trace.cpp +172 -0
  1398. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_uint128.cpp +160 -0
  1399. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_volume_patch.cpp +112 -0
  1400. polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp +222 -0
  1401. polyscope-2.5.0/deps/eigen/unsupported/test/dgmres.cpp +31 -0
  1402. polyscope-2.5.0/deps/eigen/unsupported/test/forward_adolc.cpp +141 -0
  1403. polyscope-2.5.0/deps/eigen/unsupported/test/gmres.cpp +31 -0
  1404. polyscope-2.5.0/deps/eigen/unsupported/test/kronecker_product.cpp +252 -0
  1405. polyscope-2.5.0/deps/eigen/unsupported/test/levenberg_marquardt.cpp +1477 -0
  1406. polyscope-2.5.0/deps/eigen/unsupported/test/matrix_exponential.cpp +141 -0
  1407. polyscope-2.5.0/deps/eigen/unsupported/test/matrix_function.cpp +227 -0
  1408. polyscope-2.5.0/deps/eigen/unsupported/test/matrix_functions.h +67 -0
  1409. polyscope-2.5.0/deps/eigen/unsupported/test/matrix_power.cpp +204 -0
  1410. polyscope-2.5.0/deps/eigen/unsupported/test/matrix_square_root.cpp +31 -0
  1411. polyscope-2.5.0/deps/eigen/unsupported/test/minres.cpp +44 -0
  1412. polyscope-2.5.0/deps/eigen/unsupported/test/mpreal/mpreal.h +3184 -0
  1413. polyscope-2.5.0/deps/eigen/unsupported/test/mpreal_support.cpp +65 -0
  1414. polyscope-2.5.0/deps/eigen/unsupported/test/openglsupport.cpp +333 -0
  1415. polyscope-2.5.0/deps/eigen/unsupported/test/polynomialsolver.cpp +232 -0
  1416. polyscope-2.5.0/deps/eigen/unsupported/test/polynomialutils.cpp +113 -0
  1417. polyscope-2.5.0/deps/eigen/unsupported/test/sparse_extra.cpp +186 -0
  1418. polyscope-2.5.0/deps/eigen/unsupported/test/special_functions.cpp +474 -0
  1419. polyscope-2.5.0/deps/eigen/unsupported/test/special_packetmath.cpp +140 -0
  1420. polyscope-2.5.0/deps/eigen/unsupported/test/splines.cpp +281 -0
  1421. polyscope-2.5.0/deps/polyscope/.github/workflows/linux.yml +66 -0
  1422. polyscope-2.5.0/deps/polyscope/.gitmodules +17 -0
  1423. polyscope-2.5.0/deps/polyscope/README.md +90 -0
  1424. polyscope-2.5.0/deps/polyscope/deps/glm/doc/api/arrowright.png +0 -0
  1425. polyscope-2.5.0/deps/polyscope/deps/happly/.clang-format +22 -0
  1426. polyscope-2.5.0/deps/polyscope/deps/imgui/CMakeLists.txt +84 -0
  1427. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.github/FUNDING.yml +1 -0
  1428. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.github/ISSUE_TEMPLATE/issue_template.yml +92 -0
  1429. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.github/workflows/build.yml +567 -0
  1430. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.github/workflows/manual.yml +12 -0
  1431. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.gitignore +64 -0
  1432. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/LICENSE.txt +21 -0
  1433. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.cpp +633 -0
  1434. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.h +39 -0
  1435. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.cpp +308 -0
  1436. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.h +37 -0
  1437. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.cpp +608 -0
  1438. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.h +44 -0
  1439. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.cpp +628 -0
  1440. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.h +47 -0
  1441. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.cpp +838 -0
  1442. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.h +75 -0
  1443. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.cpp +424 -0
  1444. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.h +33 -0
  1445. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.cpp +938 -0
  1446. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.h +66 -0
  1447. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.cpp +309 -0
  1448. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.h +47 -0
  1449. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.h +75 -0
  1450. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.mm +597 -0
  1451. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.cpp +321 -0
  1452. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.h +41 -0
  1453. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.cpp +985 -0
  1454. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.h +66 -0
  1455. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3_loader.h +916 -0
  1456. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.h +56 -0
  1457. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.mm +830 -0
  1458. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.cpp +847 -0
  1459. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.h +46 -0
  1460. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.cpp +809 -0
  1461. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.h +47 -0
  1462. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlgpu3.cpp +615 -0
  1463. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlgpu3.h +49 -0
  1464. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlgpu3_shaders.h +372 -0
  1465. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.cpp +278 -0
  1466. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.h +51 -0
  1467. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.cpp +295 -0
  1468. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.h +51 -0
  1469. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.cpp +1689 -0
  1470. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.h +222 -0
  1471. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.cpp +880 -0
  1472. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.h +67 -0
  1473. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.cpp +966 -0
  1474. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.h +53 -0
  1475. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/sdlgpu3/build_instructions.txt +40 -0
  1476. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/sdlgpu3/shader.frag +15 -0
  1477. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/sdlgpu3/shader.vert +24 -0
  1478. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/vulkan/build_instructions.txt +4 -0
  1479. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/BACKENDS.md +146 -0
  1480. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/CHANGELOG.txt +7069 -0
  1481. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/CONTRIBUTING.md +81 -0
  1482. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/EXAMPLES.md +236 -0
  1483. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/FAQ.md +710 -0
  1484. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/FONTS.md +500 -0
  1485. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/README.md +222 -0
  1486. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/TODO.txt +341 -0
  1487. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/README.md +36 -0
  1488. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/build.gradle +46 -0
  1489. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml +24 -0
  1490. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/main.cpp +383 -0
  1491. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj +503 -0
  1492. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/main.mm +337 -0
  1493. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/main.cpp +171 -0
  1494. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile.emscripten +94 -0
  1495. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/main.cpp +208 -0
  1496. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/CMakeLists.txt +47 -0
  1497. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win32.bat +14 -0
  1498. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win64.bat +14 -0
  1499. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +190 -0
  1500. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/main.cpp +534 -0
  1501. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_wgpu/CMakeLists.txt +117 -0
  1502. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_wgpu/Makefile.emscripten +91 -0
  1503. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_wgpu/README.md +24 -0
  1504. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_wgpu/main.cpp +350 -0
  1505. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_null/Makefile +92 -0
  1506. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/main.cpp +250 -0
  1507. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/main.cpp +176 -0
  1508. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/Makefile.emscripten +95 -0
  1509. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/main.cpp +226 -0
  1510. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/main.cpp +177 -0
  1511. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/build_win32.bat +14 -0
  1512. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/build_win64.bat +14 -0
  1513. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj +190 -0
  1514. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/main.cpp +543 -0
  1515. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile +84 -0
  1516. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile.emscripten +99 -0
  1517. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/README.md +40 -0
  1518. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/build_win32.bat +14 -0
  1519. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/build_win64.bat +14 -0
  1520. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/main.cpp +226 -0
  1521. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/Makefile +73 -0
  1522. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/build_win64.bat +14 -0
  1523. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj +189 -0
  1524. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj.filters +60 -0
  1525. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/main.cpp +218 -0
  1526. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/Makefile +73 -0
  1527. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/main.cpp +188 -0
  1528. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/build_win32.bat +14 -0
  1529. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/build_win64.bat +14 -0
  1530. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj +190 -0
  1531. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj.filters +64 -0
  1532. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/main.cpp +552 -0
  1533. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/main.cpp +271 -0
  1534. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/main.cpp +274 -0
  1535. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/build_win32.bat +8 -0
  1536. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +180 -0
  1537. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/main.cpp +539 -0
  1538. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/main.cpp +264 -0
  1539. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/build_mingw.bat +8 -0
  1540. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/main.cpp +243 -0
  1541. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/build_win32.bat +9 -0
  1542. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/build_win64.bat +9 -0
  1543. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj +178 -0
  1544. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj.filters +63 -0
  1545. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/main.cpp +559 -0
  1546. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/imgui_examples.sln +201 -0
  1547. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h +38 -0
  1548. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.h +420 -0
  1549. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imconfig.h +141 -0
  1550. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui.cpp +17061 -0
  1551. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui.h +3770 -0
  1552. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_demo.cpp +10686 -0
  1553. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_draw.cpp +4828 -0
  1554. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_internal.h +3636 -0
  1555. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_tables.cpp +4525 -0
  1556. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_widgets.cpp +10451 -0
  1557. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imstb_textedit.h +1469 -0
  1558. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imstb_truetype.h +5085 -0
  1559. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.cpp +88 -0
  1560. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.h +25 -0
  1561. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/fonts/binary_to_compressed_c.cpp +424 -0
  1562. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/freetype/README.md +54 -0
  1563. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.cpp +969 -0
  1564. polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.h +58 -0
  1565. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/.github/CMakeLists.txt +95 -0
  1566. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/.github/example_implot.cpp +55 -0
  1567. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/.github/workflows/build.yml +144 -0
  1568. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/LICENSE +21 -0
  1569. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/README.md +178 -0
  1570. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/TODO.md +102 -0
  1571. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot.cpp +5901 -0
  1572. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot.h +1304 -0
  1573. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot_demo.cpp +2498 -0
  1574. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot_internal.h +1689 -0
  1575. polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot_items.cpp +2852 -0
  1576. polyscope-2.5.0/deps/polyscope/examples/demo-app/demo_app.cpp +959 -0
  1577. polyscope-2.5.0/deps/polyscope/include/polyscope/affine_remapper.ipp +192 -0
  1578. polyscope-2.5.0/deps/polyscope/include/polyscope/camera_parameters.h +130 -0
  1579. polyscope-2.5.0/deps/polyscope/include/polyscope/camera_view.h +152 -0
  1580. polyscope-2.5.0/deps/polyscope/include/polyscope/check_invalid_values.h +27 -0
  1581. polyscope-2.5.0/deps/polyscope/include/polyscope/color_quantity.h +52 -0
  1582. polyscope-2.5.0/deps/polyscope/include/polyscope/color_quantity.ipp +35 -0
  1583. polyscope-2.5.0/deps/polyscope/include/polyscope/context.h +121 -0
  1584. polyscope-2.5.0/deps/polyscope/include/polyscope/curve_network.h +259 -0
  1585. polyscope-2.5.0/deps/polyscope/include/polyscope/curve_network_quantity.h +25 -0
  1586. polyscope-2.5.0/deps/polyscope/include/polyscope/elementary_geometry.h +21 -0
  1587. polyscope-2.5.0/deps/polyscope/include/polyscope/floating_quantity.h +22 -0
  1588. polyscope-2.5.0/deps/polyscope/include/polyscope/floating_quantity_structure.h +113 -0
  1589. polyscope-2.5.0/deps/polyscope/include/polyscope/histogram.h +59 -0
  1590. polyscope-2.5.0/deps/polyscope/include/polyscope/messages.h +32 -0
  1591. polyscope-2.5.0/deps/polyscope/include/polyscope/numeric_helpers.h +127 -0
  1592. polyscope-2.5.0/deps/polyscope/include/polyscope/options.h +159 -0
  1593. polyscope-2.5.0/deps/polyscope/include/polyscope/parameterization_quantity.ipp +325 -0
  1594. polyscope-2.5.0/deps/polyscope/include/polyscope/persistent_value.h +168 -0
  1595. polyscope-2.5.0/deps/polyscope/include/polyscope/pick.h +91 -0
  1596. polyscope-2.5.0/deps/polyscope/include/polyscope/point_cloud.h +219 -0
  1597. polyscope-2.5.0/deps/polyscope/include/polyscope/point_cloud_quantity.h +24 -0
  1598. polyscope-2.5.0/deps/polyscope/include/polyscope/polyscope.h +203 -0
  1599. polyscope-2.5.0/deps/polyscope/include/polyscope/quantity.h +88 -0
  1600. polyscope-2.5.0/deps/polyscope/include/polyscope/render/color_maps.h +93 -0
  1601. polyscope-2.5.0/deps/polyscope/include/polyscope/render/colormap_defs.h +32 -0
  1602. polyscope-2.5.0/deps/polyscope/include/polyscope/render/engine.h +700 -0
  1603. polyscope-2.5.0/deps/polyscope/include/polyscope/render/ground_plane.h +65 -0
  1604. polyscope-2.5.0/deps/polyscope/include/polyscope/render/managed_buffer.h +307 -0
  1605. polyscope-2.5.0/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +429 -0
  1606. polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/gl_engine_egl.h +118 -0
  1607. polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/gl_engine_glfw.h +91 -0
  1608. polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +29 -0
  1609. polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +21 -0
  1610. polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +51 -0
  1611. polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +43 -0
  1612. polyscope-2.5.0/deps/polyscope/include/polyscope/render_image_quantity_base.h +86 -0
  1613. polyscope-2.5.0/deps/polyscope/include/polyscope/scalar_quantity.h +96 -0
  1614. polyscope-2.5.0/deps/polyscope/include/polyscope/scalar_quantity.ipp +414 -0
  1615. polyscope-2.5.0/deps/polyscope/include/polyscope/screenshot.h +40 -0
  1616. polyscope-2.5.0/deps/polyscope/include/polyscope/simple_triangle_mesh.h +143 -0
  1617. polyscope-2.5.0/deps/polyscope/include/polyscope/slice_plane.h +120 -0
  1618. polyscope-2.5.0/deps/polyscope/include/polyscope/structure.h +298 -0
  1619. polyscope-2.5.0/deps/polyscope/include/polyscope/surface_color_quantity.h +82 -0
  1620. polyscope-2.5.0/deps/polyscope/include/polyscope/surface_mesh.h +477 -0
  1621. polyscope-2.5.0/deps/polyscope/include/polyscope/surface_mesh_quantity.h +29 -0
  1622. polyscope-2.5.0/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +103 -0
  1623. polyscope-2.5.0/deps/polyscope/include/polyscope/surface_scalar_quantity.h +138 -0
  1624. polyscope-2.5.0/deps/polyscope/include/polyscope/texture_map_quantity.h +43 -0
  1625. polyscope-2.5.0/deps/polyscope/include/polyscope/texture_map_quantity.ipp +32 -0
  1626. polyscope-2.5.0/deps/polyscope/include/polyscope/types.h +69 -0
  1627. polyscope-2.5.0/deps/polyscope/include/polyscope/vector_quantity.ipp +330 -0
  1628. polyscope-2.5.0/deps/polyscope/include/polyscope/view.h +200 -0
  1629. polyscope-2.5.0/deps/polyscope/include/polyscope/volume_grid.h +217 -0
  1630. polyscope-2.5.0/deps/polyscope/include/polyscope/volume_grid_quantity.h +27 -0
  1631. polyscope-2.5.0/deps/polyscope/include/polyscope/volume_mesh.h +306 -0
  1632. polyscope-2.5.0/deps/polyscope/include/polyscope/volume_mesh_quantity.h +30 -0
  1633. polyscope-2.5.0/deps/polyscope/misc/generate_colormap_constant.py +60 -0
  1634. polyscope-2.5.0/deps/polyscope/src/CMakeLists.txt +384 -0
  1635. polyscope-2.5.0/deps/polyscope/src/camera_parameters.cpp +207 -0
  1636. polyscope-2.5.0/deps/polyscope/src/camera_view.cpp +518 -0
  1637. polyscope-2.5.0/deps/polyscope/src/color_image_quantity.cpp +181 -0
  1638. polyscope-2.5.0/deps/polyscope/src/color_management.cpp +81 -0
  1639. polyscope-2.5.0/deps/polyscope/src/curve_network.cpp +734 -0
  1640. polyscope-2.5.0/deps/polyscope/src/curve_network_scalar_quantity.cpp +252 -0
  1641. polyscope-2.5.0/deps/polyscope/src/elementary_geometry.cpp +35 -0
  1642. polyscope-2.5.0/deps/polyscope/src/file_helpers.cpp +54 -0
  1643. polyscope-2.5.0/deps/polyscope/src/floating_quantity_structure.cpp +139 -0
  1644. polyscope-2.5.0/deps/polyscope/src/histogram.cpp +280 -0
  1645. polyscope-2.5.0/deps/polyscope/src/image_quantity_base.cpp +133 -0
  1646. polyscope-2.5.0/deps/polyscope/src/imgui_config.cpp +120 -0
  1647. polyscope-2.5.0/deps/polyscope/src/messages.cpp +304 -0
  1648. polyscope-2.5.0/deps/polyscope/src/options.cpp +81 -0
  1649. polyscope-2.5.0/deps/polyscope/src/persistent_value.cpp +28 -0
  1650. polyscope-2.5.0/deps/polyscope/src/pick.cpp +265 -0
  1651. polyscope-2.5.0/deps/polyscope/src/point_cloud.cpp +567 -0
  1652. polyscope-2.5.0/deps/polyscope/src/polyscope.cpp +1549 -0
  1653. polyscope-2.5.0/deps/polyscope/src/quantity.cpp +44 -0
  1654. polyscope-2.5.0/deps/polyscope/src/render/color_maps.cpp +94 -0
  1655. polyscope-2.5.0/deps/polyscope/src/render/engine.cpp +1185 -0
  1656. polyscope-2.5.0/deps/polyscope/src/render/ground_plane.cpp +491 -0
  1657. polyscope-2.5.0/deps/polyscope/src/render/initialize_backend.cpp +107 -0
  1658. polyscope-2.5.0/deps/polyscope/src/render/managed_buffer.cpp +628 -0
  1659. polyscope-2.5.0/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +2087 -0
  1660. polyscope-2.5.0/deps/polyscope/src/render/opengl/gl_engine.cpp +2608 -0
  1661. polyscope-2.5.0/deps/polyscope/src/render/opengl/gl_engine_egl.cpp +579 -0
  1662. polyscope-2.5.0/deps/polyscope/src/render/opengl/gl_engine_glfw.cpp +338 -0
  1663. polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/common.cpp +470 -0
  1664. polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +526 -0
  1665. polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/grid_shaders.cpp +467 -0
  1666. polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +132 -0
  1667. polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +313 -0
  1668. polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/rules.cpp +523 -0
  1669. polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +738 -0
  1670. polyscope-2.5.0/deps/polyscope/src/render/shader_builder.cpp +169 -0
  1671. polyscope-2.5.0/deps/polyscope/src/render_image_quantity_base.cpp +163 -0
  1672. polyscope-2.5.0/deps/polyscope/src/scalar_image_quantity.cpp +175 -0
  1673. polyscope-2.5.0/deps/polyscope/src/scalar_render_image_quantity.cpp +122 -0
  1674. polyscope-2.5.0/deps/polyscope/src/screenshot.cpp +217 -0
  1675. polyscope-2.5.0/deps/polyscope/src/simple_triangle_mesh.cpp +351 -0
  1676. polyscope-2.5.0/deps/polyscope/src/slice_plane.cpp +453 -0
  1677. polyscope-2.5.0/deps/polyscope/src/structure.cpp +351 -0
  1678. polyscope-2.5.0/deps/polyscope/src/surface_color_quantity.cpp +202 -0
  1679. polyscope-2.5.0/deps/polyscope/src/surface_mesh.cpp +2013 -0
  1680. polyscope-2.5.0/deps/polyscope/src/surface_parameterization_quantity.cpp +278 -0
  1681. polyscope-2.5.0/deps/polyscope/src/surface_scalar_quantity.cpp +398 -0
  1682. polyscope-2.5.0/deps/polyscope/src/view.cpp +1242 -0
  1683. polyscope-2.5.0/deps/polyscope/src/volume_grid.cpp +602 -0
  1684. polyscope-2.5.0/deps/polyscope/src/volume_grid_scalar_quantity.cpp +390 -0
  1685. polyscope-2.5.0/deps/polyscope/src/volume_mesh.cpp +1132 -0
  1686. polyscope-2.5.0/deps/polyscope/test/CMakeLists.txt +124 -0
  1687. polyscope-2.5.0/deps/polyscope/test/include/polyscope_test.h +167 -0
  1688. polyscope-2.5.0/deps/polyscope/test/src/basics_test.cpp +274 -0
  1689. polyscope-2.5.0/deps/polyscope/test/src/camera_view_test.cpp +176 -0
  1690. polyscope-2.5.0/deps/polyscope/test/src/curve_network_test.cpp +217 -0
  1691. polyscope-2.5.0/deps/polyscope/test/src/floating_test.cpp +264 -0
  1692. polyscope-2.5.0/deps/polyscope/test/src/point_cloud_test.cpp +245 -0
  1693. polyscope-2.5.0/deps/polyscope/test/src/surface_mesh_test.cpp +667 -0
  1694. polyscope-2.5.0/deps/polyscope/test/src/volume_mesh_test.cpp +304 -0
  1695. polyscope-2.5.0/deps/pybind11/.appveyor.yml +35 -0
  1696. polyscope-2.5.0/deps/pybind11/.clang-format +38 -0
  1697. polyscope-2.5.0/deps/pybind11/.clang-tidy +79 -0
  1698. polyscope-2.5.0/deps/pybind11/.cmake-format.yaml +73 -0
  1699. polyscope-2.5.0/deps/pybind11/.codespell-ignore-lines +24 -0
  1700. polyscope-2.5.0/deps/pybind11/.gitattributes +1 -0
  1701. polyscope-2.5.0/deps/pybind11/.github/CODEOWNERS +9 -0
  1702. polyscope-2.5.0/deps/pybind11/.github/CONTRIBUTING.md +388 -0
  1703. polyscope-2.5.0/deps/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
  1704. polyscope-2.5.0/deps/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
  1705. polyscope-2.5.0/deps/pybind11/.github/dependabot.yml +15 -0
  1706. polyscope-2.5.0/deps/pybind11/.github/labeler.yml +13 -0
  1707. polyscope-2.5.0/deps/pybind11/.github/labeler_merged.yml +8 -0
  1708. polyscope-2.5.0/deps/pybind11/.github/matchers/pylint.json +32 -0
  1709. polyscope-2.5.0/deps/pybind11/.github/pull_request_template.md +19 -0
  1710. polyscope-2.5.0/deps/pybind11/.github/workflows/ci.yml +1241 -0
  1711. polyscope-2.5.0/deps/pybind11/.github/workflows/configure.yml +92 -0
  1712. polyscope-2.5.0/deps/pybind11/.github/workflows/emscripten.yaml +30 -0
  1713. polyscope-2.5.0/deps/pybind11/.github/workflows/format.yml +60 -0
  1714. polyscope-2.5.0/deps/pybind11/.github/workflows/labeler.yml +25 -0
  1715. polyscope-2.5.0/deps/pybind11/.github/workflows/pip.yml +120 -0
  1716. polyscope-2.5.0/deps/pybind11/.github/workflows/upstream.yml +116 -0
  1717. polyscope-2.5.0/deps/pybind11/.gitignore +46 -0
  1718. polyscope-2.5.0/deps/pybind11/.pre-commit-config.yaml +156 -0
  1719. polyscope-2.5.0/deps/pybind11/.readthedocs.yml +20 -0
  1720. polyscope-2.5.0/deps/pybind11/CMakeLists.txt +378 -0
  1721. polyscope-2.5.0/deps/pybind11/LICENSE +29 -0
  1722. polyscope-2.5.0/deps/pybind11/MANIFEST.in +6 -0
  1723. polyscope-2.5.0/deps/pybind11/README.rst +181 -0
  1724. polyscope-2.5.0/deps/pybind11/SECURITY.md +13 -0
  1725. polyscope-2.5.0/deps/pybind11/docs/Doxyfile +21 -0
  1726. polyscope-2.5.0/deps/pybind11/docs/_static/css/custom.css +3 -0
  1727. polyscope-2.5.0/deps/pybind11/docs/advanced/cast/chrono.rst +81 -0
  1728. polyscope-2.5.0/deps/pybind11/docs/advanced/cast/custom.rst +93 -0
  1729. polyscope-2.5.0/deps/pybind11/docs/advanced/cast/eigen.rst +310 -0
  1730. polyscope-2.5.0/deps/pybind11/docs/advanced/cast/functional.rst +109 -0
  1731. polyscope-2.5.0/deps/pybind11/docs/advanced/cast/index.rst +43 -0
  1732. polyscope-2.5.0/deps/pybind11/docs/advanced/cast/overview.rst +170 -0
  1733. polyscope-2.5.0/deps/pybind11/docs/advanced/cast/stl.rst +249 -0
  1734. polyscope-2.5.0/deps/pybind11/docs/advanced/cast/strings.rst +296 -0
  1735. polyscope-2.5.0/deps/pybind11/docs/advanced/classes.rst +1335 -0
  1736. polyscope-2.5.0/deps/pybind11/docs/advanced/embedding.rst +262 -0
  1737. polyscope-2.5.0/deps/pybind11/docs/advanced/exceptions.rst +401 -0
  1738. polyscope-2.5.0/deps/pybind11/docs/advanced/functions.rst +614 -0
  1739. polyscope-2.5.0/deps/pybind11/docs/advanced/misc.rst +429 -0
  1740. polyscope-2.5.0/deps/pybind11/docs/advanced/pycpp/index.rst +13 -0
  1741. polyscope-2.5.0/deps/pybind11/docs/advanced/pycpp/numpy.rst +453 -0
  1742. polyscope-2.5.0/deps/pybind11/docs/advanced/pycpp/object.rst +286 -0
  1743. polyscope-2.5.0/deps/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
  1744. polyscope-2.5.0/deps/pybind11/docs/advanced/smart_ptrs.rst +174 -0
  1745. polyscope-2.5.0/deps/pybind11/docs/basics.rst +314 -0
  1746. polyscope-2.5.0/deps/pybind11/docs/benchmark.py +89 -0
  1747. polyscope-2.5.0/deps/pybind11/docs/benchmark.rst +95 -0
  1748. polyscope-2.5.0/deps/pybind11/docs/changelog.rst +3285 -0
  1749. polyscope-2.5.0/deps/pybind11/docs/classes.rst +555 -0
  1750. polyscope-2.5.0/deps/pybind11/docs/cmake/index.rst +8 -0
  1751. polyscope-2.5.0/deps/pybind11/docs/compiling.rst +726 -0
  1752. polyscope-2.5.0/deps/pybind11/docs/conf.py +369 -0
  1753. polyscope-2.5.0/deps/pybind11/docs/faq.rst +352 -0
  1754. polyscope-2.5.0/deps/pybind11/docs/index.rst +48 -0
  1755. polyscope-2.5.0/deps/pybind11/docs/installing.rst +105 -0
  1756. polyscope-2.5.0/deps/pybind11/docs/limitations.rst +68 -0
  1757. polyscope-2.5.0/deps/pybind11/docs/pybind11-logo.png +0 -0
  1758. polyscope-2.5.0/deps/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  1759. polyscope-2.5.0/deps/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
  1760. polyscope-2.5.0/deps/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  1761. polyscope-2.5.0/deps/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
  1762. polyscope-2.5.0/deps/pybind11/docs/reference.rst +130 -0
  1763. polyscope-2.5.0/deps/pybind11/docs/release.rst +143 -0
  1764. polyscope-2.5.0/deps/pybind11/docs/requirements.in +6 -0
  1765. polyscope-2.5.0/deps/pybind11/docs/requirements.txt +275 -0
  1766. polyscope-2.5.0/deps/pybind11/docs/upgrade.rst +594 -0
  1767. polyscope-2.5.0/deps/pybind11/include/pybind11/buffer_info.h +208 -0
  1768. polyscope-2.5.0/deps/pybind11/include/pybind11/cast.h +1855 -0
  1769. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/class.h +767 -0
  1770. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/common.h +1287 -0
  1771. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/cpp_conduit.h +77 -0
  1772. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/descr.h +172 -0
  1773. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  1774. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/init.h +436 -0
  1775. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/internals.h +766 -0
  1776. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/type_caster_base.h +1195 -0
  1777. polyscope-2.5.0/deps/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
  1778. polyscope-2.5.0/deps/pybind11/include/pybind11/eigen/matrix.h +715 -0
  1779. polyscope-2.5.0/deps/pybind11/include/pybind11/eigen/tensor.h +515 -0
  1780. polyscope-2.5.0/deps/pybind11/include/pybind11/embed.h +313 -0
  1781. polyscope-2.5.0/deps/pybind11/include/pybind11/functional.h +149 -0
  1782. polyscope-2.5.0/deps/pybind11/include/pybind11/gil.h +219 -0
  1783. polyscope-2.5.0/deps/pybind11/include/pybind11/gil_safe_call_once.h +100 -0
  1784. polyscope-2.5.0/deps/pybind11/include/pybind11/numpy.h +2139 -0
  1785. polyscope-2.5.0/deps/pybind11/include/pybind11/pybind11.h +2978 -0
  1786. polyscope-2.5.0/deps/pybind11/include/pybind11/pytypes.h +2606 -0
  1787. polyscope-2.5.0/deps/pybind11/include/pybind11/stl/filesystem.h +124 -0
  1788. polyscope-2.5.0/deps/pybind11/include/pybind11/stl_bind.h +822 -0
  1789. polyscope-2.5.0/deps/pybind11/include/pybind11/typing.h +242 -0
  1790. polyscope-2.5.0/deps/pybind11/noxfile.py +107 -0
  1791. polyscope-2.5.0/deps/pybind11/pybind11/__init__.py +19 -0
  1792. polyscope-2.5.0/deps/pybind11/pybind11/__main__.py +86 -0
  1793. polyscope-2.5.0/deps/pybind11/pybind11/_version.py +12 -0
  1794. polyscope-2.5.0/deps/pybind11/pybind11/commands.py +39 -0
  1795. polyscope-2.5.0/deps/pybind11/pybind11/py.typed +0 -0
  1796. polyscope-2.5.0/deps/pybind11/pybind11/setup_helpers.py +500 -0
  1797. polyscope-2.5.0/deps/pybind11/pyproject.toml +87 -0
  1798. polyscope-2.5.0/deps/pybind11/setup.cfg +43 -0
  1799. polyscope-2.5.0/deps/pybind11/setup.py +149 -0
  1800. polyscope-2.5.0/deps/pybind11/tests/CMakeLists.txt +604 -0
  1801. polyscope-2.5.0/deps/pybind11/tests/conftest.py +224 -0
  1802. polyscope-2.5.0/deps/pybind11/tests/constructor_stats.h +322 -0
  1803. polyscope-2.5.0/deps/pybind11/tests/cross_module_gil_utils.cpp +111 -0
  1804. polyscope-2.5.0/deps/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
  1805. polyscope-2.5.0/deps/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
  1806. polyscope-2.5.0/deps/pybind11/tests/env.py +31 -0
  1807. polyscope-2.5.0/deps/pybind11/tests/exo_planet_c_api.cpp +103 -0
  1808. polyscope-2.5.0/deps/pybind11/tests/exo_planet_pybind11.cpp +19 -0
  1809. polyscope-2.5.0/deps/pybind11/tests/extra_python_package/pytest.ini +0 -0
  1810. polyscope-2.5.0/deps/pybind11/tests/extra_python_package/test_files.py +299 -0
  1811. polyscope-2.5.0/deps/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  1812. polyscope-2.5.0/deps/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
  1813. polyscope-2.5.0/deps/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
  1814. polyscope-2.5.0/deps/pybind11/tests/local_bindings.h +92 -0
  1815. polyscope-2.5.0/deps/pybind11/tests/pybind11_cross_module_tests.cpp +149 -0
  1816. polyscope-2.5.0/deps/pybind11/tests/pybind11_tests.cpp +131 -0
  1817. polyscope-2.5.0/deps/pybind11/tests/pybind11_tests.h +98 -0
  1818. polyscope-2.5.0/deps/pybind11/tests/pyproject.toml +21 -0
  1819. polyscope-2.5.0/deps/pybind11/tests/pytest.ini +23 -0
  1820. polyscope-2.5.0/deps/pybind11/tests/requirements.txt +13 -0
  1821. polyscope-2.5.0/deps/pybind11/tests/test_async.cpp +25 -0
  1822. polyscope-2.5.0/deps/pybind11/tests/test_async.py +31 -0
  1823. polyscope-2.5.0/deps/pybind11/tests/test_buffers.cpp +271 -0
  1824. polyscope-2.5.0/deps/pybind11/tests/test_buffers.py +237 -0
  1825. polyscope-2.5.0/deps/pybind11/tests/test_builtin_casters.cpp +387 -0
  1826. polyscope-2.5.0/deps/pybind11/tests/test_builtin_casters.py +532 -0
  1827. polyscope-2.5.0/deps/pybind11/tests/test_call_policies.cpp +113 -0
  1828. polyscope-2.5.0/deps/pybind11/tests/test_call_policies.py +249 -0
  1829. polyscope-2.5.0/deps/pybind11/tests/test_callbacks.cpp +280 -0
  1830. polyscope-2.5.0/deps/pybind11/tests/test_callbacks.py +230 -0
  1831. polyscope-2.5.0/deps/pybind11/tests/test_chrono.cpp +81 -0
  1832. polyscope-2.5.0/deps/pybind11/tests/test_chrono.py +207 -0
  1833. polyscope-2.5.0/deps/pybind11/tests/test_class.cpp +656 -0
  1834. polyscope-2.5.0/deps/pybind11/tests/test_class.py +503 -0
  1835. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/embed.cpp +23 -0
  1836. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +28 -0
  1837. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +39 -0
  1838. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +46 -0
  1839. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/main.cpp +6 -0
  1840. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +47 -0
  1841. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +41 -0
  1842. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +47 -0
  1843. polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/test.py +10 -0
  1844. polyscope-2.5.0/deps/pybind11/tests/test_const_name.cpp +55 -0
  1845. polyscope-2.5.0/deps/pybind11/tests/test_const_name.py +31 -0
  1846. polyscope-2.5.0/deps/pybind11/tests/test_constants_and_functions.cpp +158 -0
  1847. polyscope-2.5.0/deps/pybind11/tests/test_constants_and_functions.py +58 -0
  1848. polyscope-2.5.0/deps/pybind11/tests/test_copy_move.cpp +544 -0
  1849. polyscope-2.5.0/deps/pybind11/tests/test_copy_move.py +140 -0
  1850. polyscope-2.5.0/deps/pybind11/tests/test_cpp_conduit.cpp +22 -0
  1851. polyscope-2.5.0/deps/pybind11/tests/test_cpp_conduit.py +162 -0
  1852. polyscope-2.5.0/deps/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
  1853. polyscope-2.5.0/deps/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
  1854. polyscope-2.5.0/deps/pybind11/tests/test_custom_type_casters.cpp +217 -0
  1855. polyscope-2.5.0/deps/pybind11/tests/test_custom_type_casters.py +124 -0
  1856. polyscope-2.5.0/deps/pybind11/tests/test_custom_type_setup.cpp +41 -0
  1857. polyscope-2.5.0/deps/pybind11/tests/test_custom_type_setup.py +50 -0
  1858. polyscope-2.5.0/deps/pybind11/tests/test_docstring_options.cpp +129 -0
  1859. polyscope-2.5.0/deps/pybind11/tests/test_docstring_options.py +66 -0
  1860. polyscope-2.5.0/deps/pybind11/tests/test_eigen_matrix.cpp +443 -0
  1861. polyscope-2.5.0/deps/pybind11/tests/test_eigen_matrix.py +816 -0
  1862. polyscope-2.5.0/deps/pybind11/tests/test_eigen_tensor.cpp +18 -0
  1863. polyscope-2.5.0/deps/pybind11/tests/test_eigen_tensor.inl +338 -0
  1864. polyscope-2.5.0/deps/pybind11/tests/test_eigen_tensor.py +290 -0
  1865. polyscope-2.5.0/deps/pybind11/tests/test_embed/CMakeLists.txt +54 -0
  1866. polyscope-2.5.0/deps/pybind11/tests/test_embed/catch.cpp +43 -0
  1867. polyscope-2.5.0/deps/pybind11/tests/test_embed/external_module.cpp +20 -0
  1868. polyscope-2.5.0/deps/pybind11/tests/test_embed/test_interpreter.cpp +488 -0
  1869. polyscope-2.5.0/deps/pybind11/tests/test_embed/test_interpreter.py +16 -0
  1870. polyscope-2.5.0/deps/pybind11/tests/test_embed/test_trampoline.py +18 -0
  1871. polyscope-2.5.0/deps/pybind11/tests/test_enum.cpp +133 -0
  1872. polyscope-2.5.0/deps/pybind11/tests/test_enum.py +270 -0
  1873. polyscope-2.5.0/deps/pybind11/tests/test_eval.cpp +118 -0
  1874. polyscope-2.5.0/deps/pybind11/tests/test_eval.py +52 -0
  1875. polyscope-2.5.0/deps/pybind11/tests/test_eval_call.py +5 -0
  1876. polyscope-2.5.0/deps/pybind11/tests/test_exceptions.cpp +388 -0
  1877. polyscope-2.5.0/deps/pybind11/tests/test_exceptions.py +434 -0
  1878. polyscope-2.5.0/deps/pybind11/tests/test_factory_constructors.cpp +430 -0
  1879. polyscope-2.5.0/deps/pybind11/tests/test_factory_constructors.py +518 -0
  1880. polyscope-2.5.0/deps/pybind11/tests/test_gil_scoped.cpp +144 -0
  1881. polyscope-2.5.0/deps/pybind11/tests/test_gil_scoped.py +249 -0
  1882. polyscope-2.5.0/deps/pybind11/tests/test_iostream.cpp +126 -0
  1883. polyscope-2.5.0/deps/pybind11/tests/test_iostream.py +297 -0
  1884. polyscope-2.5.0/deps/pybind11/tests/test_kwargs_and_defaults.cpp +325 -0
  1885. polyscope-2.5.0/deps/pybind11/tests/test_kwargs_and_defaults.py +428 -0
  1886. polyscope-2.5.0/deps/pybind11/tests/test_local_bindings.cpp +106 -0
  1887. polyscope-2.5.0/deps/pybind11/tests/test_local_bindings.py +259 -0
  1888. polyscope-2.5.0/deps/pybind11/tests/test_methods_and_attributes.cpp +492 -0
  1889. polyscope-2.5.0/deps/pybind11/tests/test_methods_and_attributes.py +539 -0
  1890. polyscope-2.5.0/deps/pybind11/tests/test_modules.cpp +125 -0
  1891. polyscope-2.5.0/deps/pybind11/tests/test_modules.py +118 -0
  1892. polyscope-2.5.0/deps/pybind11/tests/test_multiple_inheritance.cpp +341 -0
  1893. polyscope-2.5.0/deps/pybind11/tests/test_multiple_inheritance.py +495 -0
  1894. polyscope-2.5.0/deps/pybind11/tests/test_numpy_array.cpp +547 -0
  1895. polyscope-2.5.0/deps/pybind11/tests/test_numpy_array.py +672 -0
  1896. polyscope-2.5.0/deps/pybind11/tests/test_numpy_dtypes.cpp +641 -0
  1897. polyscope-2.5.0/deps/pybind11/tests/test_numpy_dtypes.py +448 -0
  1898. polyscope-2.5.0/deps/pybind11/tests/test_numpy_vectorize.cpp +107 -0
  1899. polyscope-2.5.0/deps/pybind11/tests/test_numpy_vectorize.py +268 -0
  1900. polyscope-2.5.0/deps/pybind11/tests/test_opaque_types.cpp +77 -0
  1901. polyscope-2.5.0/deps/pybind11/tests/test_opaque_types.py +60 -0
  1902. polyscope-2.5.0/deps/pybind11/tests/test_operator_overloading.cpp +281 -0
  1903. polyscope-2.5.0/deps/pybind11/tests/test_operator_overloading.py +153 -0
  1904. polyscope-2.5.0/deps/pybind11/tests/test_pickling.cpp +194 -0
  1905. polyscope-2.5.0/deps/pybind11/tests/test_pickling.py +95 -0
  1906. polyscope-2.5.0/deps/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
  1907. polyscope-2.5.0/deps/pybind11/tests/test_python_multiple_inheritance.py +36 -0
  1908. polyscope-2.5.0/deps/pybind11/tests/test_pytypes.cpp +989 -0
  1909. polyscope-2.5.0/deps/pybind11/tests/test_pytypes.py +1092 -0
  1910. polyscope-2.5.0/deps/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
  1911. polyscope-2.5.0/deps/pybind11/tests/test_sequences_and_iterators.py +267 -0
  1912. polyscope-2.5.0/deps/pybind11/tests/test_smart_ptr.cpp +476 -0
  1913. polyscope-2.5.0/deps/pybind11/tests/test_smart_ptr.py +317 -0
  1914. polyscope-2.5.0/deps/pybind11/tests/test_stl.cpp +549 -0
  1915. polyscope-2.5.0/deps/pybind11/tests/test_stl.py +383 -0
  1916. polyscope-2.5.0/deps/pybind11/tests/test_stl_binders.cpp +275 -0
  1917. polyscope-2.5.0/deps/pybind11/tests/test_stl_binders.py +395 -0
  1918. polyscope-2.5.0/deps/pybind11/tests/test_tagbased_polymorphic.cpp +148 -0
  1919. polyscope-2.5.0/deps/pybind11/tests/test_tagbased_polymorphic.py +30 -0
  1920. polyscope-2.5.0/deps/pybind11/tests/test_thread.cpp +66 -0
  1921. polyscope-2.5.0/deps/pybind11/tests/test_thread.py +49 -0
  1922. polyscope-2.5.0/deps/pybind11/tests/test_type_caster_pyobject_ptr.cpp +167 -0
  1923. polyscope-2.5.0/deps/pybind11/tests/test_type_caster_pyobject_ptr.py +122 -0
  1924. polyscope-2.5.0/deps/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
  1925. polyscope-2.5.0/deps/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
  1926. polyscope-2.5.0/deps/pybind11/tests/test_union.cpp +22 -0
  1927. polyscope-2.5.0/deps/pybind11/tests/test_union.py +10 -0
  1928. polyscope-2.5.0/deps/pybind11/tests/test_unnamed_namespace_a.cpp +38 -0
  1929. polyscope-2.5.0/deps/pybind11/tests/test_unnamed_namespace_a.py +36 -0
  1930. polyscope-2.5.0/deps/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
  1931. polyscope-2.5.0/deps/pybind11/tests/test_unnamed_namespace_b.py +7 -0
  1932. polyscope-2.5.0/deps/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
  1933. polyscope-2.5.0/deps/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
  1934. polyscope-2.5.0/deps/pybind11/tests/test_virtual_functions.cpp +592 -0
  1935. polyscope-2.5.0/deps/pybind11/tests/test_virtual_functions.py +463 -0
  1936. polyscope-2.5.0/deps/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
  1937. polyscope-2.5.0/deps/pybind11/tests/valgrind-python.supp +117 -0
  1938. polyscope-2.5.0/deps/pybind11/tools/FindPythonLibsNew.cmake +310 -0
  1939. polyscope-2.5.0/deps/pybind11/tools/check-style.sh +44 -0
  1940. polyscope-2.5.0/deps/pybind11/tools/cmake_uninstall.cmake.in +23 -0
  1941. polyscope-2.5.0/deps/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
  1942. polyscope-2.5.0/deps/pybind11/tools/libsize.py +38 -0
  1943. polyscope-2.5.0/deps/pybind11/tools/make_changelog.py +92 -0
  1944. polyscope-2.5.0/deps/pybind11/tools/pybind11.pc.in +7 -0
  1945. polyscope-2.5.0/deps/pybind11/tools/pybind11Common.cmake +455 -0
  1946. polyscope-2.5.0/deps/pybind11/tools/pybind11Config.cmake.in +233 -0
  1947. polyscope-2.5.0/deps/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
  1948. polyscope-2.5.0/deps/pybind11/tools/pybind11NewTools.cmake +341 -0
  1949. polyscope-2.5.0/deps/pybind11/tools/pybind11Tools.cmake +239 -0
  1950. polyscope-2.5.0/deps/pybind11/tools/pyproject.toml +3 -0
  1951. polyscope-2.5.0/deps/pybind11/tools/setup_global.py.in +63 -0
  1952. polyscope-2.5.0/deps/pybind11/tools/setup_main.py.in +44 -0
  1953. polyscope-2.5.0/deps/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
  1954. polyscope-2.5.0/pyproject.toml +36 -0
  1955. polyscope-2.5.0/ruff.toml +10 -0
  1956. polyscope-2.5.0/src/cpp/core.cpp +627 -0
  1957. polyscope-2.5.0/src/cpp/curve_network.cpp +120 -0
  1958. polyscope-2.5.0/src/cpp/imgui.cpp +2398 -0
  1959. polyscope-2.5.0/src/cpp/imgui_utils.h +25 -0
  1960. polyscope-2.5.0/src/cpp/implot.cpp +729 -0
  1961. polyscope-2.5.0/src/cpp/point_cloud.cpp +104 -0
  1962. polyscope-2.5.0/src/cpp/surface_mesh.cpp +212 -0
  1963. polyscope-2.5.0/src/cpp/utils.h +262 -0
  1964. polyscope-2.5.0/src/cpp/volume_grid.cpp +136 -0
  1965. polyscope-2.5.0/src/cpp/volume_mesh.cpp +104 -0
  1966. polyscope-2.5.0/src/polyscope/__init__.py +28 -0
  1967. polyscope-2.5.0/src/polyscope/common.py +250 -0
  1968. polyscope-2.5.0/src/polyscope/core.py +1101 -0
  1969. polyscope-2.5.0/src/polyscope/curve_network.py +231 -0
  1970. polyscope-2.5.0/src/polyscope/device_interop.py +478 -0
  1971. polyscope-2.5.0/src/polyscope/implot/__init__.py +1 -0
  1972. polyscope-2.5.0/src/polyscope/managed_buffer.py +147 -0
  1973. polyscope-2.5.0/src/polyscope/point_cloud.py +196 -0
  1974. polyscope-2.5.0/src/polyscope/structure.py +212 -0
  1975. polyscope-2.5.0/src/polyscope/surface_mesh.py +436 -0
  1976. polyscope-2.5.0/src/polyscope/volume_grid.py +222 -0
  1977. polyscope-2.5.0/src/polyscope/volume_mesh.py +236 -0
  1978. polyscope-2.5.0/src/polyscope_bindings/__init__.pyi +0 -0
  1979. polyscope-2.5.0/test/.gitignore +3 -0
  1980. polyscope-2.5.0/test/assets/test_colormap.png +0 -0
  1981. polyscope-2.5.0/test/assets/testwax_b.jpg +0 -0
  1982. polyscope-2.5.0/test/assets/testwax_g.jpg +0 -0
  1983. polyscope-2.5.0/test/assets/testwax_k.jpg +0 -0
  1984. polyscope-2.5.0/test/assets/testwax_r.jpg +0 -0
  1985. polyscope-2.5.0/test/fast_update_demo.py +112 -0
  1986. polyscope-2.5.0/test/imgui_demo.py +178 -0
  1987. polyscope-2.5.0/test/polyscope_demo.py +282 -0
  1988. polyscope-2.5.0/test/polyscope_test.py +2623 -0
  1989. polyscope-2.5.0/test/ps_test.py +30 -0
  1990. polyscope-2.3.0/CMakeLists.txt +0 -33
  1991. polyscope-2.3.0/PKG-INFO +0 -103
  1992. polyscope-2.3.0/README.md +0 -45
  1993. polyscope-2.3.0/deps/polyscope/.git +0 -1
  1994. polyscope-2.3.0/deps/polyscope/.github/workflows/linux.yml +0 -54
  1995. polyscope-2.3.0/deps/polyscope/.gitmodules +0 -14
  1996. polyscope-2.3.0/deps/polyscope/README.md +0 -89
  1997. polyscope-2.3.0/deps/polyscope/deps/glfw/.git +0 -1
  1998. polyscope-2.3.0/deps/polyscope/deps/glm/.git +0 -1
  1999. polyscope-2.3.0/deps/polyscope/deps/happly/.git +0 -1
  2000. polyscope-2.3.0/deps/polyscope/deps/imgui/CMakeLists.txt +0 -76
  2001. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.git +0 -1
  2002. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.github/FUNDING.yml +0 -1
  2003. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.github/ISSUE_TEMPLATE/issue_template.yml +0 -90
  2004. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.github/workflows/build.yml +0 -507
  2005. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.gitignore +0 -59
  2006. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/LICENSE.txt +0 -21
  2007. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.cpp +0 -613
  2008. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.h +0 -38
  2009. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.cpp +0 -306
  2010. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.h +0 -36
  2011. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.cpp +0 -589
  2012. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.h +0 -31
  2013. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.cpp +0 -605
  2014. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.h +0 -32
  2015. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.cpp +0 -761
  2016. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.h +0 -44
  2017. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.cpp +0 -410
  2018. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.h +0 -31
  2019. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.cpp +0 -854
  2020. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.h +0 -58
  2021. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.cpp +0 -308
  2022. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.h +0 -46
  2023. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.h +0 -72
  2024. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.mm +0 -590
  2025. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.cpp +0 -302
  2026. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.h +0 -38
  2027. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.cpp +0 -956
  2028. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.h +0 -66
  2029. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3_loader.h +0 -816
  2030. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.h +0 -51
  2031. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.mm +0 -811
  2032. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.cpp +0 -753
  2033. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.h +0 -45
  2034. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.cpp +0 -697
  2035. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.h +0 -47
  2036. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.cpp +0 -266
  2037. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.h +0 -39
  2038. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.cpp +0 -260
  2039. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.h +0 -39
  2040. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.cpp +0 -1585
  2041. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.h +0 -188
  2042. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.cpp +0 -797
  2043. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.h +0 -49
  2044. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.cpp +0 -903
  2045. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.h +0 -52
  2046. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/BACKENDS.md +0 -146
  2047. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/CHANGELOG.txt +0 -5565
  2048. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/CONTRIBUTING.md +0 -81
  2049. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/EXAMPLES.md +0 -245
  2050. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/FAQ.md +0 -675
  2051. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/FONTS.md +0 -498
  2052. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/README.md +0 -220
  2053. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/TODO.txt +0 -346
  2054. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/README.md +0 -36
  2055. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/build.gradle +0 -46
  2056. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml +0 -24
  2057. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/main.cpp +0 -383
  2058. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj +0 -503
  2059. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/main.mm +0 -337
  2060. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/Makefile.emscripten +0 -88
  2061. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/README.md +0 -24
  2062. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/main.cpp +0 -280
  2063. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/web/index.html +0 -80
  2064. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/main.cpp +0 -166
  2065. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile.emscripten +0 -91
  2066. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/main.cpp +0 -197
  2067. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/CMakeLists.txt +0 -45
  2068. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win32.bat +0 -14
  2069. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win64.bat +0 -13
  2070. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +0 -190
  2071. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/main.cpp +0 -562
  2072. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_null/Makefile +0 -92
  2073. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/main.cpp +0 -245
  2074. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/main.cpp +0 -171
  2075. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/Makefile.emscripten +0 -92
  2076. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/main.cpp +0 -208
  2077. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/main.cpp +0 -172
  2078. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/build_win32.bat +0 -10
  2079. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj +0 -190
  2080. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/main.cpp +0 -571
  2081. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile +0 -84
  2082. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile.emscripten +0 -96
  2083. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/README.md +0 -40
  2084. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/build_win32.bat +0 -8
  2085. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/main.cpp +0 -207
  2086. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/Makefile +0 -73
  2087. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/main.cpp +0 -178
  2088. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/main.cpp +0 -259
  2089. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/main.cpp +0 -263
  2090. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/build_win32.bat +0 -9
  2091. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +0 -180
  2092. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/main.cpp +0 -470
  2093. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/main.cpp +0 -250
  2094. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/main.cpp +0 -238
  2095. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/imgui_examples.sln +0 -151
  2096. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h +0 -37
  2097. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib +0 -0
  2098. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib +0 -0
  2099. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.h +0 -420
  2100. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imconfig.h +0 -131
  2101. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui.cpp +0 -15727
  2102. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui.h +0 -3308
  2103. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_demo.cpp +0 -8558
  2104. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_draw.cpp +0 -4308
  2105. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_internal.h +0 -3582
  2106. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_tables.cpp +0 -4379
  2107. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_widgets.cpp +0 -8967
  2108. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imstb_textedit.h +0 -1441
  2109. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imstb_truetype.h +0 -5085
  2110. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.cpp +0 -85
  2111. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.h +0 -21
  2112. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/fonts/binary_to_compressed_c.cpp +0 -388
  2113. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/freetype/README.md +0 -44
  2114. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.cpp +0 -950
  2115. polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.h +0 -51
  2116. polyscope-2.3.0/deps/polyscope/examples/demo-app/demo_app.cpp +0 -885
  2117. polyscope-2.3.0/deps/polyscope/include/polyscope/affine_remapper.ipp +0 -190
  2118. polyscope-2.3.0/deps/polyscope/include/polyscope/camera_parameters.h +0 -129
  2119. polyscope-2.3.0/deps/polyscope/include/polyscope/camera_view.h +0 -144
  2120. polyscope-2.3.0/deps/polyscope/include/polyscope/color_quantity.h +0 -51
  2121. polyscope-2.3.0/deps/polyscope/include/polyscope/color_quantity.ipp +0 -30
  2122. polyscope-2.3.0/deps/polyscope/include/polyscope/context.h +0 -110
  2123. polyscope-2.3.0/deps/polyscope/include/polyscope/curve_network.h +0 -240
  2124. polyscope-2.3.0/deps/polyscope/include/polyscope/curve_network_quantity.h +0 -25
  2125. polyscope-2.3.0/deps/polyscope/include/polyscope/floating_quantity.h +0 -22
  2126. polyscope-2.3.0/deps/polyscope/include/polyscope/floating_quantity_structure.h +0 -112
  2127. polyscope-2.3.0/deps/polyscope/include/polyscope/histogram.h +0 -56
  2128. polyscope-2.3.0/deps/polyscope/include/polyscope/messages.h +0 -30
  2129. polyscope-2.3.0/deps/polyscope/include/polyscope/options.h +0 -132
  2130. polyscope-2.3.0/deps/polyscope/include/polyscope/parameterization_quantity.ipp +0 -324
  2131. polyscope-2.3.0/deps/polyscope/include/polyscope/persistent_value.h +0 -162
  2132. polyscope-2.3.0/deps/polyscope/include/polyscope/pick.h +0 -53
  2133. polyscope-2.3.0/deps/polyscope/include/polyscope/point_cloud.h +0 -211
  2134. polyscope-2.3.0/deps/polyscope/include/polyscope/point_cloud_quantity.h +0 -24
  2135. polyscope-2.3.0/deps/polyscope/include/polyscope/polyscope.h +0 -195
  2136. polyscope-2.3.0/deps/polyscope/include/polyscope/quantity.h +0 -84
  2137. polyscope-2.3.0/deps/polyscope/include/polyscope/render/color_maps.h +0 -87
  2138. polyscope-2.3.0/deps/polyscope/include/polyscope/render/colormap_defs.h +0 -27
  2139. polyscope-2.3.0/deps/polyscope/include/polyscope/render/engine.h +0 -687
  2140. polyscope-2.3.0/deps/polyscope/include/polyscope/render/ground_plane.h +0 -70
  2141. polyscope-2.3.0/deps/polyscope/include/polyscope/render/managed_buffer.h +0 -299
  2142. polyscope-2.3.0/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +0 -425
  2143. polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/gl_engine_egl.h +0 -80
  2144. polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/gl_engine_glfw.h +0 -88
  2145. polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +0 -28
  2146. polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +0 -20
  2147. polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +0 -49
  2148. polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +0 -42
  2149. polyscope-2.3.0/deps/polyscope/include/polyscope/render_image_quantity_base.h +0 -82
  2150. polyscope-2.3.0/deps/polyscope/include/polyscope/scalar_quantity.h +0 -85
  2151. polyscope-2.3.0/deps/polyscope/include/polyscope/scalar_quantity.ipp +0 -295
  2152. polyscope-2.3.0/deps/polyscope/include/polyscope/screenshot.h +0 -26
  2153. polyscope-2.3.0/deps/polyscope/include/polyscope/simple_triangle_mesh.h +0 -134
  2154. polyscope-2.3.0/deps/polyscope/include/polyscope/slice_plane.h +0 -119
  2155. polyscope-2.3.0/deps/polyscope/include/polyscope/structure.h +0 -292
  2156. polyscope-2.3.0/deps/polyscope/include/polyscope/surface_color_quantity.h +0 -78
  2157. polyscope-2.3.0/deps/polyscope/include/polyscope/surface_mesh.h +0 -461
  2158. polyscope-2.3.0/deps/polyscope/include/polyscope/surface_mesh_quantity.h +0 -29
  2159. polyscope-2.3.0/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +0 -100
  2160. polyscope-2.3.0/deps/polyscope/include/polyscope/surface_scalar_quantity.h +0 -136
  2161. polyscope-2.3.0/deps/polyscope/include/polyscope/types.h +0 -62
  2162. polyscope-2.3.0/deps/polyscope/include/polyscope/vector_quantity.ipp +0 -327
  2163. polyscope-2.3.0/deps/polyscope/include/polyscope/view.h +0 -159
  2164. polyscope-2.3.0/deps/polyscope/include/polyscope/volume_grid.h +0 -209
  2165. polyscope-2.3.0/deps/polyscope/include/polyscope/volume_grid_quantity.h +0 -27
  2166. polyscope-2.3.0/deps/polyscope/include/polyscope/volume_mesh.h +0 -298
  2167. polyscope-2.3.0/deps/polyscope/include/polyscope/volume_mesh_quantity.h +0 -30
  2168. polyscope-2.3.0/deps/polyscope/misc/generate_colormap_constant.py +0 -49
  2169. polyscope-2.3.0/deps/polyscope/src/CMakeLists.txt +0 -375
  2170. polyscope-2.3.0/deps/polyscope/src/camera_parameters.cpp +0 -191
  2171. polyscope-2.3.0/deps/polyscope/src/camera_view.cpp +0 -470
  2172. polyscope-2.3.0/deps/polyscope/src/color_image_quantity.cpp +0 -179
  2173. polyscope-2.3.0/deps/polyscope/src/color_management.cpp +0 -84
  2174. polyscope-2.3.0/deps/polyscope/src/curve_network.cpp +0 -579
  2175. polyscope-2.3.0/deps/polyscope/src/curve_network_scalar_quantity.cpp +0 -213
  2176. polyscope-2.3.0/deps/polyscope/src/file_helpers.cpp +0 -54
  2177. polyscope-2.3.0/deps/polyscope/src/floating_quantity_structure.cpp +0 -119
  2178. polyscope-2.3.0/deps/polyscope/src/histogram.cpp +0 -262
  2179. polyscope-2.3.0/deps/polyscope/src/image_quantity_base.cpp +0 -133
  2180. polyscope-2.3.0/deps/polyscope/src/imgui_config.cpp +0 -104
  2181. polyscope-2.3.0/deps/polyscope/src/messages.cpp +0 -284
  2182. polyscope-2.3.0/deps/polyscope/src/options.cpp +0 -67
  2183. polyscope-2.3.0/deps/polyscope/src/persistent_value.cpp +0 -25
  2184. polyscope-2.3.0/deps/polyscope/src/pick.cpp +0 -170
  2185. polyscope-2.3.0/deps/polyscope/src/point_cloud.cpp +0 -524
  2186. polyscope-2.3.0/deps/polyscope/src/polyscope.cpp +0 -1306
  2187. polyscope-2.3.0/deps/polyscope/src/quantity.cpp +0 -40
  2188. polyscope-2.3.0/deps/polyscope/src/render/color_maps.cpp +0 -78
  2189. polyscope-2.3.0/deps/polyscope/src/render/engine.cpp +0 -1172
  2190. polyscope-2.3.0/deps/polyscope/src/render/ground_plane.cpp +0 -481
  2191. polyscope-2.3.0/deps/polyscope/src/render/initialize_backend.cpp +0 -99
  2192. polyscope-2.3.0/deps/polyscope/src/render/managed_buffer.cpp +0 -614
  2193. polyscope-2.3.0/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +0 -2061
  2194. polyscope-2.3.0/deps/polyscope/src/render/opengl/gl_engine.cpp +0 -2605
  2195. polyscope-2.3.0/deps/polyscope/src/render/opengl/gl_engine_egl.cpp +0 -357
  2196. polyscope-2.3.0/deps/polyscope/src/render/opengl/gl_engine_glfw.cpp +0 -262
  2197. polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/common.cpp +0 -449
  2198. polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +0 -484
  2199. polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/grid_shaders.cpp +0 -466
  2200. polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +0 -92
  2201. polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +0 -309
  2202. polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/rules.cpp +0 -470
  2203. polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +0 -675
  2204. polyscope-2.3.0/deps/polyscope/src/render/shader_builder.cpp +0 -179
  2205. polyscope-2.3.0/deps/polyscope/src/render_image_quantity_base.cpp +0 -117
  2206. polyscope-2.3.0/deps/polyscope/src/scalar_image_quantity.cpp +0 -173
  2207. polyscope-2.3.0/deps/polyscope/src/scalar_render_image_quantity.cpp +0 -123
  2208. polyscope-2.3.0/deps/polyscope/src/screenshot.cpp +0 -164
  2209. polyscope-2.3.0/deps/polyscope/src/simple_triangle_mesh.cpp +0 -312
  2210. polyscope-2.3.0/deps/polyscope/src/slice_plane.cpp +0 -447
  2211. polyscope-2.3.0/deps/polyscope/src/structure.cpp +0 -343
  2212. polyscope-2.3.0/deps/polyscope/src/surface_color_quantity.cpp +0 -169
  2213. polyscope-2.3.0/deps/polyscope/src/surface_mesh.cpp +0 -1786
  2214. polyscope-2.3.0/deps/polyscope/src/surface_parameterization_quantity.cpp +0 -268
  2215. polyscope-2.3.0/deps/polyscope/src/surface_scalar_quantity.cpp +0 -345
  2216. polyscope-2.3.0/deps/polyscope/src/view.cpp +0 -1091
  2217. polyscope-2.3.0/deps/polyscope/src/volume_grid.cpp +0 -557
  2218. polyscope-2.3.0/deps/polyscope/src/volume_grid_scalar_quantity.cpp +0 -390
  2219. polyscope-2.3.0/deps/polyscope/src/volume_mesh.cpp +0 -1075
  2220. polyscope-2.3.0/deps/polyscope/test/CMakeLists.txt +0 -124
  2221. polyscope-2.3.0/deps/polyscope/test/include/polyscope_test.h +0 -171
  2222. polyscope-2.3.0/deps/polyscope/test/src/basics_test.cpp +0 -145
  2223. polyscope-2.3.0/deps/polyscope/test/src/camera_view_test.cpp +0 -176
  2224. polyscope-2.3.0/deps/polyscope/test/src/curve_network_test.cpp +0 -125
  2225. polyscope-2.3.0/deps/polyscope/test/src/floating_test.cpp +0 -230
  2226. polyscope-2.3.0/deps/polyscope/test/src/point_cloud_test.cpp +0 -220
  2227. polyscope-2.3.0/deps/polyscope/test/src/surface_mesh_test.cpp +0 -580
  2228. polyscope-2.3.0/deps/polyscope/test/src/volume_mesh_test.cpp +0 -230
  2229. polyscope-2.3.0/deps/pybind11/CMakeLists.txt +0 -373
  2230. polyscope-2.3.0/deps/pybind11/include/pybind11/buffer_info.h +0 -208
  2231. polyscope-2.3.0/deps/pybind11/include/pybind11/cast.h +0 -1837
  2232. polyscope-2.3.0/deps/pybind11/include/pybind11/detail/class.h +0 -748
  2233. polyscope-2.3.0/deps/pybind11/include/pybind11/detail/common.h +0 -1267
  2234. polyscope-2.3.0/deps/pybind11/include/pybind11/detail/descr.h +0 -171
  2235. polyscope-2.3.0/deps/pybind11/include/pybind11/detail/init.h +0 -434
  2236. polyscope-2.3.0/deps/pybind11/include/pybind11/detail/internals.h +0 -667
  2237. polyscope-2.3.0/deps/pybind11/include/pybind11/detail/type_caster_base.h +0 -1218
  2238. polyscope-2.3.0/deps/pybind11/include/pybind11/eigen/matrix.h +0 -714
  2239. polyscope-2.3.0/deps/pybind11/include/pybind11/eigen/tensor.h +0 -517
  2240. polyscope-2.3.0/deps/pybind11/include/pybind11/embed.h +0 -316
  2241. polyscope-2.3.0/deps/pybind11/include/pybind11/functional.h +0 -138
  2242. polyscope-2.3.0/deps/pybind11/include/pybind11/gil.h +0 -247
  2243. polyscope-2.3.0/deps/pybind11/include/pybind11/gil_safe_call_once.h +0 -91
  2244. polyscope-2.3.0/deps/pybind11/include/pybind11/numpy.h +0 -2133
  2245. polyscope-2.3.0/deps/pybind11/include/pybind11/pybind11.h +0 -2963
  2246. polyscope-2.3.0/deps/pybind11/include/pybind11/pytypes.h +0 -2574
  2247. polyscope-2.3.0/deps/pybind11/include/pybind11/stl/filesystem.h +0 -116
  2248. polyscope-2.3.0/deps/pybind11/include/pybind11/stl_bind.h +0 -823
  2249. polyscope-2.3.0/deps/pybind11/include/pybind11/typing.h +0 -125
  2250. polyscope-2.3.0/deps/pybind11/tests/CMakeLists.txt +0 -589
  2251. polyscope-2.3.0/deps/pybind11/tests/constructor_stats.h +0 -322
  2252. polyscope-2.3.0/deps/pybind11/tests/local_bindings.h +0 -92
  2253. polyscope-2.3.0/deps/pybind11/tests/pybind11_tests.h +0 -85
  2254. polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -28
  2255. polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -39
  2256. polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -46
  2257. polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -47
  2258. polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -41
  2259. polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -47
  2260. polyscope-2.3.0/deps/pybind11/tests/test_embed/CMakeLists.txt +0 -47
  2261. polyscope-2.3.0/deps/pybind11/tools/FindPythonLibsNew.cmake +0 -310
  2262. polyscope-2.3.0/deps/pybind11/tools/pybind11Common.cmake +0 -419
  2263. polyscope-2.3.0/deps/pybind11/tools/pybind11NewTools.cmake +0 -311
  2264. polyscope-2.3.0/deps/pybind11/tools/pybind11Tools.cmake +0 -239
  2265. polyscope-2.3.0/setup.cfg +0 -4
  2266. polyscope-2.3.0/setup.py +0 -113
  2267. polyscope-2.3.0/src/cpp/core.cpp +0 -538
  2268. polyscope-2.3.0/src/cpp/curve_network.cpp +0 -96
  2269. polyscope-2.3.0/src/cpp/imgui.cpp +0 -2344
  2270. polyscope-2.3.0/src/cpp/point_cloud.cpp +0 -84
  2271. polyscope-2.3.0/src/cpp/surface_mesh.cpp +0 -195
  2272. polyscope-2.3.0/src/cpp/utils.h +0 -248
  2273. polyscope-2.3.0/src/cpp/volume_grid.cpp +0 -129
  2274. polyscope-2.3.0/src/cpp/volume_mesh.cpp +0 -97
  2275. polyscope-2.3.0/src/polyscope/__init__.py +0 -15
  2276. polyscope-2.3.0/src/polyscope/common.py +0 -220
  2277. polyscope-2.3.0/src/polyscope/core.py +0 -890
  2278. polyscope-2.3.0/src/polyscope/curve_network.py +0 -209
  2279. polyscope-2.3.0/src/polyscope/device_interop.py +0 -431
  2280. polyscope-2.3.0/src/polyscope/managed_buffer.py +0 -144
  2281. polyscope-2.3.0/src/polyscope/point_cloud.py +0 -177
  2282. polyscope-2.3.0/src/polyscope/structure.py +0 -208
  2283. polyscope-2.3.0/src/polyscope/surface_mesh.py +0 -418
  2284. polyscope-2.3.0/src/polyscope/volume_grid.py +0 -216
  2285. polyscope-2.3.0/src/polyscope/volume_mesh.py +0 -230
  2286. polyscope-2.3.0/src/polyscope.egg-info/PKG-INFO +0 -103
  2287. polyscope-2.3.0/src/polyscope.egg-info/SOURCES.txt +0 -2771
  2288. polyscope-2.3.0/src/polyscope.egg-info/dependency_links.txt +0 -1
  2289. polyscope-2.3.0/src/polyscope.egg-info/not-zip-safe +0 -1
  2290. polyscope-2.3.0/src/polyscope.egg-info/requires.txt +0 -1
  2291. polyscope-2.3.0/src/polyscope.egg-info/top_level.txt +0 -2
  2292. {polyscope-2.3.0/deps/polyscope → polyscope-2.5.0}/.clang-format +0 -0
  2293. {polyscope-2.3.0 → polyscope-2.5.0}/LICENSE +0 -0
  2294. {polyscope-2.3.0 → polyscope-2.5.0}/MANIFEST.in +0 -0
  2295. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.BSD +0 -0
  2296. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.GPL +0 -0
  2297. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.LGPL +0 -0
  2298. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.MINPACK +0 -0
  2299. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.MPL2 +0 -0
  2300. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.README +0 -0
  2301. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Cholesky +0 -0
  2302. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/CholmodSupport +0 -0
  2303. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Core +0 -0
  2304. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Dense +0 -0
  2305. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Eigen +0 -0
  2306. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Eigenvalues +0 -0
  2307. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Geometry +0 -0
  2308. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Householder +0 -0
  2309. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/IterativeLinearSolvers +0 -0
  2310. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Jacobi +0 -0
  2311. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/KLUSupport +0 -0
  2312. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/LU +0 -0
  2313. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/MetisSupport +0 -0
  2314. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/OrderingMethods +0 -0
  2315. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/PaStiXSupport +0 -0
  2316. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/PardisoSupport +0 -0
  2317. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/QR +0 -0
  2318. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/QtAlignedMalloc +0 -0
  2319. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SPQRSupport +0 -0
  2320. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SVD +0 -0
  2321. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Sparse +0 -0
  2322. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SparseCholesky +0 -0
  2323. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SparseCore +0 -0
  2324. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SparseLU +0 -0
  2325. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SparseQR +0 -0
  2326. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/StdDeque +0 -0
  2327. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/StdList +0 -0
  2328. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/StdVector +0 -0
  2329. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SuperLUSupport +0 -0
  2330. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/UmfPackSupport +0 -0
  2331. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Cholesky/LDLT.h +0 -0
  2332. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Cholesky/LLT.h +0 -0
  2333. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
  2334. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
  2335. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ArithmeticSequence.h +0 -0
  2336. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Array.h +0 -0
  2337. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ArrayBase.h +0 -0
  2338. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ArrayWrapper.h +0 -0
  2339. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Assign.h +0 -0
  2340. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/AssignEvaluator.h +0 -0
  2341. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Assign_MKL.h +0 -0
  2342. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/BandMatrix.h +0 -0
  2343. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Block.h +0 -0
  2344. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/BooleanRedux.h +0 -0
  2345. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CommaInitializer.h +0 -0
  2346. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ConditionEstimator.h +0 -0
  2347. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CoreEvaluators.h +0 -0
  2348. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CoreIterators.h +0 -0
  2349. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseBinaryOp.h +0 -0
  2350. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseNullaryOp.h +0 -0
  2351. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseTernaryOp.h +0 -0
  2352. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseUnaryOp.h +0 -0
  2353. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseUnaryView.h +0 -0
  2354. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DenseBase.h +0 -0
  2355. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DenseCoeffsBase.h +0 -0
  2356. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DenseStorage.h +0 -0
  2357. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Diagonal.h +0 -0
  2358. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DiagonalMatrix.h +0 -0
  2359. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DiagonalProduct.h +0 -0
  2360. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Dot.h +0 -0
  2361. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/EigenBase.h +0 -0
  2362. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ForceAlignedAccess.h +0 -0
  2363. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Fuzzy.h +0 -0
  2364. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/GeneralProduct.h +0 -0
  2365. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/GenericPacketMath.h +0 -0
  2366. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/GlobalFunctions.h +0 -0
  2367. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/IO.h +0 -0
  2368. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/IndexedView.h +0 -0
  2369. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Inverse.h +0 -0
  2370. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Map.h +0 -0
  2371. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/MapBase.h +0 -0
  2372. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/MathFunctions.h +0 -0
  2373. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/MathFunctionsImpl.h +0 -0
  2374. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Matrix.h +0 -0
  2375. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/MatrixBase.h +0 -0
  2376. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/NestByValue.h +0 -0
  2377. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/NoAlias.h +0 -0
  2378. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/NumTraits.h +0 -0
  2379. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
  2380. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/PermutationMatrix.h +0 -0
  2381. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/PlainObjectBase.h +0 -0
  2382. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Product.h +0 -0
  2383. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ProductEvaluators.h +0 -0
  2384. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Random.h +0 -0
  2385. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Redux.h +0 -0
  2386. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Ref.h +0 -0
  2387. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Replicate.h +0 -0
  2388. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Reshaped.h +0 -0
  2389. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ReturnByValue.h +0 -0
  2390. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Reverse.h +0 -0
  2391. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Select.h +0 -0
  2392. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/SelfAdjointView.h +0 -0
  2393. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
  2394. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Solve.h +0 -0
  2395. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/SolveTriangular.h +0 -0
  2396. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/SolverBase.h +0 -0
  2397. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/StableNorm.h +0 -0
  2398. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/StlIterators.h +0 -0
  2399. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Stride.h +0 -0
  2400. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Swap.h +0 -0
  2401. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Transpose.h +0 -0
  2402. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Transpositions.h +0 -0
  2403. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/TriangularMatrix.h +0 -0
  2404. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/VectorBlock.h +0 -0
  2405. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/VectorwiseOp.h +0 -0
  2406. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Visitor.h +0 -0
  2407. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX/Complex.h +0 -0
  2408. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
  2409. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
  2410. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
  2411. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
  2412. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
  2413. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
  2414. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
  2415. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
  2416. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
  2417. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
  2418. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
  2419. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
  2420. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
  2421. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
  2422. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/Half.h +0 -0
  2423. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/Settings.h +0 -0
  2424. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
  2425. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
  2426. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
  2427. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
  2428. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
  2429. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/MSA/Complex.h +0 -0
  2430. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
  2431. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
  2432. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/NEON/Complex.h +0 -0
  2433. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
  2434. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
  2435. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
  2436. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SSE/Complex.h +0 -0
  2437. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
  2438. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
  2439. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
  2440. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
  2441. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
  2442. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
  2443. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
  2444. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
  2445. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
  2446. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
  2447. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
  2448. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
  2449. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
  2450. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
  2451. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/StlFunctors.h +0 -0
  2452. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
  2453. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
  2454. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
  2455. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
  2456. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
  2457. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
  2458. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
  2459. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
  2460. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
  2461. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/Parallelizer.h +0 -0
  2462. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
  2463. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
  2464. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
  2465. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
  2466. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
  2467. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
  2468. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
  2469. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
  2470. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
  2471. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
  2472. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
  2473. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
  2474. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
  2475. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/BlasUtil.h +0 -0
  2476. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
  2477. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/Constants.h +0 -0
  2478. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
  2479. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
  2480. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
  2481. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/IntegralConstant.h +0 -0
  2482. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/MKL_support.h +0 -0
  2483. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/Macros.h +0 -0
  2484. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/Memory.h +0 -0
  2485. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/Meta.h +0 -0
  2486. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/NonMPL2.h +0 -0
  2487. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
  2488. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/ReshapedHelper.h +0 -0
  2489. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/StaticAssert.h +0 -0
  2490. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/SymbolicIndex.h +0 -0
  2491. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/XprHelper.h +0 -0
  2492. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
  2493. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
  2494. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
  2495. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
  2496. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
  2497. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
  2498. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
  2499. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
  2500. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/RealQZ.h +0 -0
  2501. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur.h +0 -0
  2502. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
  2503. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
  2504. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
  2505. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
  2506. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/AlignedBox.h +0 -0
  2507. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/AngleAxis.h +0 -0
  2508. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/EulerAngles.h +0 -0
  2509. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Homogeneous.h +0 -0
  2510. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Hyperplane.h +0 -0
  2511. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/OrthoMethods.h +0 -0
  2512. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/ParametrizedLine.h +0 -0
  2513. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Quaternion.h +0 -0
  2514. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Rotation2D.h +0 -0
  2515. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/RotationBase.h +0 -0
  2516. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Scaling.h +0 -0
  2517. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Transform.h +0 -0
  2518. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Translation.h +0 -0
  2519. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Umeyama.h +0 -0
  2520. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +0 -0
  2521. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Householder/BlockHouseholder.h +0 -0
  2522. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Householder/Householder.h +0 -0
  2523. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Householder/HouseholderSequence.h +0 -0
  2524. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
  2525. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
  2526. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
  2527. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
  2528. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
  2529. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
  2530. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
  2531. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
  2532. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Jacobi/Jacobi.h +0 -0
  2533. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/KLUSupport/KLUSupport.h +0 -0
  2534. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/Determinant.h +0 -0
  2535. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/FullPivLU.h +0 -0
  2536. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/InverseImpl.h +0 -0
  2537. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/PartialPivLU.h +0 -0
  2538. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
  2539. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/arch/Inverse_SSE.h +0 -0
  2540. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/MetisSupport/MetisSupport.h +0 -0
  2541. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/OrderingMethods/Amd.h +0 -0
  2542. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
  2543. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/OrderingMethods/Ordering.h +0 -0
  2544. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
  2545. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
  2546. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
  2547. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
  2548. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
  2549. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
  2550. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/HouseholderQR.h +0 -0
  2551. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
  2552. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
  2553. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/BDCSVD.h +0 -0
  2554. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/JacobiSVD.h +0 -0
  2555. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
  2556. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/SVDBase.h +0 -0
  2557. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
  2558. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
  2559. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
  2560. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/AmbiVector.h +0 -0
  2561. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/CompressedStorage.h +0 -0
  2562. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
  2563. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
  2564. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseAssign.h +0 -0
  2565. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseBlock.h +0 -0
  2566. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseColEtree.h +0 -0
  2567. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
  2568. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
  2569. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
  2570. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
  2571. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
  2572. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseDot.h +0 -0
  2573. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
  2574. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseMap.h +0 -0
  2575. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrix.h +0 -0
  2576. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
  2577. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparsePermutation.h +0 -0
  2578. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseProduct.h +0 -0
  2579. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseRedux.h +0 -0
  2580. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseRef.h +0 -0
  2581. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
  2582. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
  2583. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
  2584. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseTranspose.h +0 -0
  2585. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
  2586. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseUtil.h +0 -0
  2587. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseVector.h +0 -0
  2588. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseView.h +0 -0
  2589. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/TriangularSolver.h +0 -0
  2590. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU.h +0 -0
  2591. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
  2592. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
  2593. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
  2594. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
  2595. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
  2596. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
  2597. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
  2598. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
  2599. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
  2600. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
  2601. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
  2602. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
  2603. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
  2604. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
  2605. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
  2606. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
  2607. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseQR/SparseQR.h +0 -0
  2608. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/StlSupport/StdDeque.h +0 -0
  2609. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/StlSupport/StdList.h +0 -0
  2610. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/StlSupport/StdVector.h +0 -0
  2611. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/StlSupport/details.h +0 -0
  2612. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
  2613. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
  2614. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/Image.h +0 -0
  2615. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/Kernel.h +0 -0
  2616. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/RealSvd2x2.h +0 -0
  2617. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/blas.h +0 -0
  2618. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/lapack.h +0 -0
  2619. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/lapacke.h +0 -0
  2620. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/lapacke_mangling.h +0 -0
  2621. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
  2622. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
  2623. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/BlockMethods.h +0 -0
  2624. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
  2625. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
  2626. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/IndexedViewMethods.h +0 -0
  2627. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
  2628. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
  2629. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/ReshapedMethods.h +0 -0
  2630. {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/README.md +0 -0
  2631. /polyscope-2.3.0/deps/polyscope/deps/glm/doc/api/arrowright.png → /polyscope-2.5.0/deps/eigen/doc/ftv2pnode.png +0 -0
  2632. /polyscope-2.3.0/deps/polyscope/deps/glm/glm/detail/func_trigonometric_simd.inl → /polyscope-2.5.0/deps/eigen/test/evaluator_common.h +0 -0
  2633. {polyscope-2.3.0/deps/polyscope/deps/happly → polyscope-2.5.0/deps/polyscope}/.clang-format +0 -0
  2634. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/.github/workflows/macos.yml +0 -0
  2635. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/.github/workflows/windows.yml +0 -0
  2636. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/.gitignore +0 -0
  2637. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/CMakeLists.txt +0 -0
  2638. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/LICENSE +0 -0
  2639. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/CMakeLists.txt +0 -0
  2640. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/MarchingCubeCpp/CMakeLists.txt +0 -0
  2641. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/MarchingCubeCpp/README.md +0 -0
  2642. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/MarchingCubeCpp/include/MarchingCube/MC.h +0 -0
  2643. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/args/LICENSE +0 -0
  2644. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/args/README.md +0 -0
  2645. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/args/args/args.hxx +0 -0
  2646. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/CMakeLists.txt +0 -0
  2647. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/LICENSE +0 -0
  2648. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/include/KHR/khrplatform.h +0 -0
  2649. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/include/glad/glad.h +0 -0
  2650. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/src/CMakeLists.txt +0 -0
  2651. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/src/glad.c +0 -0
  2652. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.appveyor.yml +0 -0
  2653. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.gitattributes +0 -0
  2654. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.github/CODEOWNERS +0 -0
  2655. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.github/workflows/build.yml +0 -0
  2656. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.gitignore +0 -0
  2657. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.mailmap +0 -0
  2658. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/GenerateMappings.cmake +0 -0
  2659. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/MacOSXBundleInfo.plist.in +0 -0
  2660. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32-clang.cmake +0 -0
  2661. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32.cmake +0 -0
  2662. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/modules/FindEpollShim.cmake +0 -0
  2663. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/modules/FindOSMesa.cmake +0 -0
  2664. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/modules/FindWaylandProtocols.cmake +0 -0
  2665. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/modules/FindXKBCommon.cmake +0 -0
  2666. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32-clang.cmake +0 -0
  2667. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32.cmake +0 -0
  2668. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMakeLists.txt +0 -0
  2669. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CONTRIBUTORS.md +0 -0
  2670. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/LICENSE.md +0 -0
  2671. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/README.md +0 -0
  2672. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/cmake_uninstall.cmake.in +0 -0
  2673. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/getopt.c +0 -0
  2674. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/getopt.h +0 -0
  2675. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad/gl.h +0 -0
  2676. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad/khrplatform.h +0 -0
  2677. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad/vk_platform.h +0 -0
  2678. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad/vulkan.h +0 -0
  2679. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad_gl.c +0 -0
  2680. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad_vulkan.c +0 -0
  2681. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/linmath.h +0 -0
  2682. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/mingw/_mingw_dxhelper.h +0 -0
  2683. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/mingw/dinput.h +0 -0
  2684. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/mingw/xinput.h +0 -0
  2685. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/nuklear.h +0 -0
  2686. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/nuklear_glfw_gl2.h +0 -0
  2687. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/stb_image_write.h +0 -0
  2688. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/tinycthread.c +0 -0
  2689. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/tinycthread.h +0 -0
  2690. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/vs2008/stdint.h +0 -0
  2691. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/CMakeLists.txt +0 -0
  2692. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/CONTRIBUTING.md +0 -0
  2693. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/Doxyfile.in +0 -0
  2694. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/DoxygenLayout.xml +0 -0
  2695. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/SUPPORT.md +0 -0
  2696. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/build.dox +0 -0
  2697. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/compat.dox +0 -0
  2698. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/compile.dox +0 -0
  2699. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/context.dox +0 -0
  2700. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/extra.css +0 -0
  2701. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/extra.css.map +0 -0
  2702. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/extra.scss +0 -0
  2703. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/footer.html +0 -0
  2704. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/header.html +0 -0
  2705. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/input.dox +0 -0
  2706. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/internal.dox +0 -0
  2707. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/intro.dox +0 -0
  2708. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/main.dox +0 -0
  2709. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/monitor.dox +0 -0
  2710. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/moving.dox +0 -0
  2711. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/news.dox +0 -0
  2712. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/quick.dox +0 -0
  2713. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/spaces.svg +0 -0
  2714. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/vulkan.dox +0 -0
  2715. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/window.dox +0 -0
  2716. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/CMakeLists.txt +0 -0
  2717. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/boing.c +0 -0
  2718. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/gears.c +0 -0
  2719. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/glfw.icns +0 -0
  2720. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/glfw.ico +0 -0
  2721. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/glfw.rc +0 -0
  2722. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/heightmap.c +0 -0
  2723. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/offscreen.c +0 -0
  2724. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/particles.c +0 -0
  2725. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/sharing.c +0 -0
  2726. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/simple.c +0 -0
  2727. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/splitview.c +0 -0
  2728. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/wave.c +0 -0
  2729. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/include/GLFW/glfw3.h +0 -0
  2730. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/include/GLFW/glfw3native.h +0 -0
  2731. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/CMakeLists.txt +0 -0
  2732. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_init.m +0 -0
  2733. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_joystick.h +0 -0
  2734. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_joystick.m +0 -0
  2735. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_monitor.m +0 -0
  2736. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_platform.h +0 -0
  2737. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_time.c +0 -0
  2738. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_window.m +0 -0
  2739. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/context.c +0 -0
  2740. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/egl_context.c +0 -0
  2741. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/egl_context.h +0 -0
  2742. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glfw3.pc.in +0 -0
  2743. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glfw3Config.cmake.in +0 -0
  2744. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glfw_config.h.in +0 -0
  2745. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glx_context.c +0 -0
  2746. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glx_context.h +0 -0
  2747. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/init.c +0 -0
  2748. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/input.c +0 -0
  2749. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/internal.h +0 -0
  2750. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/linux_joystick.c +0 -0
  2751. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/linux_joystick.h +0 -0
  2752. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/mappings.h +0 -0
  2753. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/mappings.h.in +0 -0
  2754. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/monitor.c +0 -0
  2755. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/nsgl_context.h +0 -0
  2756. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/nsgl_context.m +0 -0
  2757. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_init.c +0 -0
  2758. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_joystick.c +0 -0
  2759. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_joystick.h +0 -0
  2760. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_monitor.c +0 -0
  2761. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_platform.h +0 -0
  2762. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_window.c +0 -0
  2763. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/osmesa_context.c +0 -0
  2764. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/osmesa_context.h +0 -0
  2765. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/posix_thread.c +0 -0
  2766. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/posix_thread.h +0 -0
  2767. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/posix_time.c +0 -0
  2768. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/posix_time.h +0 -0
  2769. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/vulkan.c +0 -0
  2770. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wgl_context.c +0 -0
  2771. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wgl_context.h +0 -0
  2772. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_init.c +0 -0
  2773. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_joystick.c +0 -0
  2774. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_joystick.h +0 -0
  2775. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_monitor.c +0 -0
  2776. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_platform.h +0 -0
  2777. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_thread.c +0 -0
  2778. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_time.c +0 -0
  2779. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_window.c +0 -0
  2780. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/window.c +0 -0
  2781. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wl_init.c +0 -0
  2782. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wl_monitor.c +0 -0
  2783. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wl_platform.h +0 -0
  2784. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wl_window.c +0 -0
  2785. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/x11_init.c +0 -0
  2786. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/x11_monitor.c +0 -0
  2787. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/x11_platform.h +0 -0
  2788. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/x11_window.c +0 -0
  2789. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/xkb_unicode.c +0 -0
  2790. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/xkb_unicode.h +0 -0
  2791. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/CMakeLists.txt +0 -0
  2792. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/clipboard.c +0 -0
  2793. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/cursor.c +0 -0
  2794. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/empty.c +0 -0
  2795. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/events.c +0 -0
  2796. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/gamma.c +0 -0
  2797. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/glfwinfo.c +0 -0
  2798. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/icon.c +0 -0
  2799. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/iconify.c +0 -0
  2800. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/inputlag.c +0 -0
  2801. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/joysticks.c +0 -0
  2802. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/monitors.c +0 -0
  2803. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/msaa.c +0 -0
  2804. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/opacity.c +0 -0
  2805. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/reopen.c +0 -0
  2806. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/tearing.c +0 -0
  2807. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/threads.c +0 -0
  2808. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/timeout.c +0 -0
  2809. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/title.c +0 -0
  2810. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/triangle-vulkan.c +0 -0
  2811. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/windows.c +0 -0
  2812. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/.github/workflows/ci.yml +0 -0
  2813. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/.github/workflows/make_light_release.yml +0 -0
  2814. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/.github/workflows/make_release.yml +0 -0
  2815. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/.gitignore +0 -0
  2816. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/CMakeLists.txt +0 -0
  2817. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/cmake/cmake_uninstall.cmake.in +0 -0
  2818. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/copying.txt +0 -0
  2819. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00002.html +0 -0
  2820. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00002_source.html +0 -0
  2821. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00005_source.html +0 -0
  2822. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00008_source.html +0 -0
  2823. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00011_source.html +0 -0
  2824. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00014_source.html +0 -0
  2825. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00017_source.html +0 -0
  2826. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00020_source.html +0 -0
  2827. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00023_source.html +0 -0
  2828. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00026_source.html +0 -0
  2829. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00029_source.html +0 -0
  2830. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00032_source.html +0 -0
  2831. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00035_source.html +0 -0
  2832. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00038_source.html +0 -0
  2833. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00041.html +0 -0
  2834. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00041_source.html +0 -0
  2835. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00044.html +0 -0
  2836. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00044_source.html +0 -0
  2837. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00047.html +0 -0
  2838. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00047_source.html +0 -0
  2839. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00050.html +0 -0
  2840. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00050_source.html +0 -0
  2841. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00053.html +0 -0
  2842. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00053_source.html +0 -0
  2843. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00056.html +0 -0
  2844. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00056_source.html +0 -0
  2845. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00059.html +0 -0
  2846. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00059_source.html +0 -0
  2847. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00062.html +0 -0
  2848. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00062_source.html +0 -0
  2849. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00065.html +0 -0
  2850. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00065_source.html +0 -0
  2851. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00068.html +0 -0
  2852. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00068_source.html +0 -0
  2853. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00071.html +0 -0
  2854. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00071_source.html +0 -0
  2855. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00074.html +0 -0
  2856. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00074_source.html +0 -0
  2857. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00077.html +0 -0
  2858. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00077_source.html +0 -0
  2859. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00080.html +0 -0
  2860. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00080_source.html +0 -0
  2861. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00083.html +0 -0
  2862. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00083_source.html +0 -0
  2863. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00086_source.html +0 -0
  2864. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00089.html +0 -0
  2865. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00089_source.html +0 -0
  2866. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00092.html +0 -0
  2867. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00092_source.html +0 -0
  2868. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00095.html +0 -0
  2869. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00095_source.html +0 -0
  2870. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00098.html +0 -0
  2871. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00098_source.html +0 -0
  2872. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00101.html +0 -0
  2873. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00101_source.html +0 -0
  2874. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00104.html +0 -0
  2875. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00104_source.html +0 -0
  2876. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00107.html +0 -0
  2877. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00107_source.html +0 -0
  2878. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00110.html +0 -0
  2879. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00110_source.html +0 -0
  2880. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00113.html +0 -0
  2881. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00113_source.html +0 -0
  2882. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00116.html +0 -0
  2883. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00116_source.html +0 -0
  2884. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00119.html +0 -0
  2885. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00119_source.html +0 -0
  2886. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00122.html +0 -0
  2887. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00122_source.html +0 -0
  2888. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00125.html +0 -0
  2889. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00125_source.html +0 -0
  2890. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00128.html +0 -0
  2891. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00128_source.html +0 -0
  2892. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00131.html +0 -0
  2893. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00131_source.html +0 -0
  2894. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00134.html +0 -0
  2895. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00134_source.html +0 -0
  2896. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00137.html +0 -0
  2897. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00137_source.html +0 -0
  2898. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00140.html +0 -0
  2899. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00140_source.html +0 -0
  2900. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00143.html +0 -0
  2901. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00143_source.html +0 -0
  2902. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00146.html +0 -0
  2903. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00146_source.html +0 -0
  2904. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00149.html +0 -0
  2905. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00149_source.html +0 -0
  2906. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00152.html +0 -0
  2907. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00152_source.html +0 -0
  2908. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00155.html +0 -0
  2909. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00155_source.html +0 -0
  2910. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00158.html +0 -0
  2911. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00158_source.html +0 -0
  2912. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00161.html +0 -0
  2913. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00161_source.html +0 -0
  2914. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00164.html +0 -0
  2915. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00164_source.html +0 -0
  2916. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00167.html +0 -0
  2917. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00167_source.html +0 -0
  2918. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00170.html +0 -0
  2919. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00170_source.html +0 -0
  2920. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00173.html +0 -0
  2921. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00173_source.html +0 -0
  2922. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00176.html +0 -0
  2923. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00176_source.html +0 -0
  2924. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00179.html +0 -0
  2925. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00179_source.html +0 -0
  2926. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00182.html +0 -0
  2927. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00182_source.html +0 -0
  2928. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00185.html +0 -0
  2929. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00185_source.html +0 -0
  2930. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00188_source.html +0 -0
  2931. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00191.html +0 -0
  2932. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00191_source.html +0 -0
  2933. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00194.html +0 -0
  2934. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00194_source.html +0 -0
  2935. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00197.html +0 -0
  2936. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00197_source.html +0 -0
  2937. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00200.html +0 -0
  2938. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00200_source.html +0 -0
  2939. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00203.html +0 -0
  2940. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00203_source.html +0 -0
  2941. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00206.html +0 -0
  2942. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00206_source.html +0 -0
  2943. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00209.html +0 -0
  2944. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00209_source.html +0 -0
  2945. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00212.html +0 -0
  2946. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00212_source.html +0 -0
  2947. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00215.html +0 -0
  2948. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00215_source.html +0 -0
  2949. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00218.html +0 -0
  2950. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00218_source.html +0 -0
  2951. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00221.html +0 -0
  2952. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00221_source.html +0 -0
  2953. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00224.html +0 -0
  2954. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00224_source.html +0 -0
  2955. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00227.html +0 -0
  2956. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00227_source.html +0 -0
  2957. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00230.html +0 -0
  2958. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00230_source.html +0 -0
  2959. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00233.html +0 -0
  2960. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00233_source.html +0 -0
  2961. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00236_source.html +0 -0
  2962. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00239.html +0 -0
  2963. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00239_source.html +0 -0
  2964. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00242.html +0 -0
  2965. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00242_source.html +0 -0
  2966. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00245.html +0 -0
  2967. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00245_source.html +0 -0
  2968. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00248.html +0 -0
  2969. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00248_source.html +0 -0
  2970. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00251.html +0 -0
  2971. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00251_source.html +0 -0
  2972. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00254.html +0 -0
  2973. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00254_source.html +0 -0
  2974. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00260.html +0 -0
  2975. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00260_source.html +0 -0
  2976. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00263.html +0 -0
  2977. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00263_source.html +0 -0
  2978. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00269.html +0 -0
  2979. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00269_source.html +0 -0
  2980. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00272.html +0 -0
  2981. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00272_source.html +0 -0
  2982. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00275.html +0 -0
  2983. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00275_source.html +0 -0
  2984. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00278.html +0 -0
  2985. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00278_source.html +0 -0
  2986. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00281.html +0 -0
  2987. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00281_source.html +0 -0
  2988. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00284.html +0 -0
  2989. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00284_source.html +0 -0
  2990. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00287.html +0 -0
  2991. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00287_source.html +0 -0
  2992. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00290.html +0 -0
  2993. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00290_source.html +0 -0
  2994. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00293.html +0 -0
  2995. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00293_source.html +0 -0
  2996. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00296.html +0 -0
  2997. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00296_source.html +0 -0
  2998. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00299.html +0 -0
  2999. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00299_source.html +0 -0
  3000. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00302_source.html +0 -0
  3001. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00305.html +0 -0
  3002. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00305_source.html +0 -0
  3003. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00308.html +0 -0
  3004. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00308_source.html +0 -0
  3005. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00311.html +0 -0
  3006. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00311_source.html +0 -0
  3007. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00314.html +0 -0
  3008. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00314_source.html +0 -0
  3009. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00317.html +0 -0
  3010. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00317_source.html +0 -0
  3011. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00320.html +0 -0
  3012. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00320_source.html +0 -0
  3013. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00323.html +0 -0
  3014. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00323_source.html +0 -0
  3015. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00326.html +0 -0
  3016. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00326_source.html +0 -0
  3017. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00329.html +0 -0
  3018. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00329_source.html +0 -0
  3019. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00332.html +0 -0
  3020. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00332_source.html +0 -0
  3021. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00335.html +0 -0
  3022. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00335_source.html +0 -0
  3023. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00338.html +0 -0
  3024. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00338_source.html +0 -0
  3025. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00341.html +0 -0
  3026. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00341_source.html +0 -0
  3027. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00344.html +0 -0
  3028. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00344_source.html +0 -0
  3029. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00347.html +0 -0
  3030. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00347_source.html +0 -0
  3031. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00350.html +0 -0
  3032. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00350_source.html +0 -0
  3033. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00353.html +0 -0
  3034. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00353_source.html +0 -0
  3035. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00356.html +0 -0
  3036. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00356_source.html +0 -0
  3037. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00359.html +0 -0
  3038. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00359_source.html +0 -0
  3039. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00362.html +0 -0
  3040. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00362_source.html +0 -0
  3041. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00365.html +0 -0
  3042. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00365_source.html +0 -0
  3043. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00368.html +0 -0
  3044. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00368_source.html +0 -0
  3045. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00374.html +0 -0
  3046. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00374_source.html +0 -0
  3047. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00377.html +0 -0
  3048. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00377_source.html +0 -0
  3049. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00380.html +0 -0
  3050. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00380_source.html +0 -0
  3051. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00383.html +0 -0
  3052. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00383_source.html +0 -0
  3053. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00386.html +0 -0
  3054. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00386_source.html +0 -0
  3055. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00389.html +0 -0
  3056. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00389_source.html +0 -0
  3057. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00392.html +0 -0
  3058. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00392_source.html +0 -0
  3059. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00395.html +0 -0
  3060. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00395_source.html +0 -0
  3061. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00398.html +0 -0
  3062. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00398_source.html +0 -0
  3063. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00401.html +0 -0
  3064. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00401_source.html +0 -0
  3065. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00404.html +0 -0
  3066. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00404_source.html +0 -0
  3067. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00407.html +0 -0
  3068. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00407_source.html +0 -0
  3069. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00410.html +0 -0
  3070. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00410_source.html +0 -0
  3071. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00413.html +0 -0
  3072. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00413_source.html +0 -0
  3073. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00416.html +0 -0
  3074. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00416_source.html +0 -0
  3075. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00419.html +0 -0
  3076. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00419_source.html +0 -0
  3077. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00422.html +0 -0
  3078. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00422_source.html +0 -0
  3079. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00425.html +0 -0
  3080. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00425_source.html +0 -0
  3081. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00428.html +0 -0
  3082. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00428_source.html +0 -0
  3083. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00431.html +0 -0
  3084. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00431_source.html +0 -0
  3085. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00434.html +0 -0
  3086. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00434_source.html +0 -0
  3087. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00437.html +0 -0
  3088. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00437_source.html +0 -0
  3089. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00440.html +0 -0
  3090. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00440_source.html +0 -0
  3091. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00443.html +0 -0
  3092. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00443_source.html +0 -0
  3093. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00446.html +0 -0
  3094. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00446_source.html +0 -0
  3095. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00449.html +0 -0
  3096. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00449_source.html +0 -0
  3097. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00452.html +0 -0
  3098. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00452_source.html +0 -0
  3099. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00455.html +0 -0
  3100. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00455_source.html +0 -0
  3101. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00458.html +0 -0
  3102. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00458_source.html +0 -0
  3103. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00461.html +0 -0
  3104. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00461_source.html +0 -0
  3105. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00464.html +0 -0
  3106. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00464_source.html +0 -0
  3107. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00467.html +0 -0
  3108. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00467_source.html +0 -0
  3109. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00470.html +0 -0
  3110. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00470_source.html +0 -0
  3111. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00473.html +0 -0
  3112. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00473_source.html +0 -0
  3113. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00476.html +0 -0
  3114. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00476_source.html +0 -0
  3115. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00479.html +0 -0
  3116. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00479_source.html +0 -0
  3117. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00482.html +0 -0
  3118. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00482_source.html +0 -0
  3119. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00485.html +0 -0
  3120. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00485_source.html +0 -0
  3121. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00488.html +0 -0
  3122. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00488_source.html +0 -0
  3123. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00491.html +0 -0
  3124. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00491_source.html +0 -0
  3125. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00494.html +0 -0
  3126. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00494_source.html +0 -0
  3127. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00497.html +0 -0
  3128. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00497_source.html +0 -0
  3129. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00500.html +0 -0
  3130. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00500_source.html +0 -0
  3131. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00503.html +0 -0
  3132. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00503_source.html +0 -0
  3133. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00506.html +0 -0
  3134. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00506_source.html +0 -0
  3135. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00509.html +0 -0
  3136. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00509_source.html +0 -0
  3137. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00512.html +0 -0
  3138. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00512_source.html +0 -0
  3139. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00515.html +0 -0
  3140. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00515_source.html +0 -0
  3141. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00518.html +0 -0
  3142. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00518_source.html +0 -0
  3143. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00521_source.html +0 -0
  3144. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00524.html +0 -0
  3145. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00524_source.html +0 -0
  3146. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00527_source.html +0 -0
  3147. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00530.html +0 -0
  3148. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00530_source.html +0 -0
  3149. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00536.html +0 -0
  3150. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00536_source.html +0 -0
  3151. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00539.html +0 -0
  3152. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00539_source.html +0 -0
  3153. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00542.html +0 -0
  3154. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00542_source.html +0 -0
  3155. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00545.html +0 -0
  3156. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00545_source.html +0 -0
  3157. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00548.html +0 -0
  3158. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00548_source.html +0 -0
  3159. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00551.html +0 -0
  3160. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00551_source.html +0 -0
  3161. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00554.html +0 -0
  3162. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00554_source.html +0 -0
  3163. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00560.html +0 -0
  3164. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00560_source.html +0 -0
  3165. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00563.html +0 -0
  3166. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00563_source.html +0 -0
  3167. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00566.html +0 -0
  3168. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00566_source.html +0 -0
  3169. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00572.html +0 -0
  3170. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00572_source.html +0 -0
  3171. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00575.html +0 -0
  3172. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00575_source.html +0 -0
  3173. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00578.html +0 -0
  3174. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00578_source.html +0 -0
  3175. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00581.html +0 -0
  3176. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00581_source.html +0 -0
  3177. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00584.html +0 -0
  3178. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00584_source.html +0 -0
  3179. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00587.html +0 -0
  3180. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00587_source.html +0 -0
  3181. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00590.html +0 -0
  3182. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00590_source.html +0 -0
  3183. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00593.html +0 -0
  3184. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00593_source.html +0 -0
  3185. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00596.html +0 -0
  3186. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00596_source.html +0 -0
  3187. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00599.html +0 -0
  3188. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00599_source.html +0 -0
  3189. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00602.html +0 -0
  3190. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00602_source.html +0 -0
  3191. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00605.html +0 -0
  3192. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00605_source.html +0 -0
  3193. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00608.html +0 -0
  3194. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00608_source.html +0 -0
  3195. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00611.html +0 -0
  3196. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00611_source.html +0 -0
  3197. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00614.html +0 -0
  3198. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00614_source.html +0 -0
  3199. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00617.html +0 -0
  3200. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00617_source.html +0 -0
  3201. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00620.html +0 -0
  3202. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00620_source.html +0 -0
  3203. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00623.html +0 -0
  3204. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00623_source.html +0 -0
  3205. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00626.html +0 -0
  3206. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00626_source.html +0 -0
  3207. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00629.html +0 -0
  3208. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00629_source.html +0 -0
  3209. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00632.html +0 -0
  3210. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00632_source.html +0 -0
  3211. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00635.html +0 -0
  3212. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00635_source.html +0 -0
  3213. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00638.html +0 -0
  3214. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00638_source.html +0 -0
  3215. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00641.html +0 -0
  3216. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00641_source.html +0 -0
  3217. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00644.html +0 -0
  3218. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00644_source.html +0 -0
  3219. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00647.html +0 -0
  3220. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00647_source.html +0 -0
  3221. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00650.html +0 -0
  3222. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00650_source.html +0 -0
  3223. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00653.html +0 -0
  3224. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00653_source.html +0 -0
  3225. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00656.html +0 -0
  3226. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00656_source.html +0 -0
  3227. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00659.html +0 -0
  3228. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00659_source.html +0 -0
  3229. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00662.html +0 -0
  3230. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00662_source.html +0 -0
  3231. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00665.html +0 -0
  3232. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00665_source.html +0 -0
  3233. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00668.html +0 -0
  3234. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00668_source.html +0 -0
  3235. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00671.html +0 -0
  3236. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00671_source.html +0 -0
  3237. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00674.html +0 -0
  3238. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00674_source.html +0 -0
  3239. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00677.html +0 -0
  3240. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00677_source.html +0 -0
  3241. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00680.html +0 -0
  3242. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00680_source.html +0 -0
  3243. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00683.html +0 -0
  3244. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00683_source.html +0 -0
  3245. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00686.html +0 -0
  3246. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00686_source.html +0 -0
  3247. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00689.html +0 -0
  3248. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00689_source.html +0 -0
  3249. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00692.html +0 -0
  3250. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00692_source.html +0 -0
  3251. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00695.html +0 -0
  3252. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00695_source.html +0 -0
  3253. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00698.html +0 -0
  3254. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00698_source.html +0 -0
  3255. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00701.html +0 -0
  3256. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00701_source.html +0 -0
  3257. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00704.html +0 -0
  3258. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00704_source.html +0 -0
  3259. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00707.html +0 -0
  3260. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00707_source.html +0 -0
  3261. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00710.html +0 -0
  3262. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00710_source.html +0 -0
  3263. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00713.html +0 -0
  3264. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00713_source.html +0 -0
  3265. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00716.html +0 -0
  3266. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00716_source.html +0 -0
  3267. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00719.html +0 -0
  3268. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00719_source.html +0 -0
  3269. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00722.html +0 -0
  3270. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00722_source.html +0 -0
  3271. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00725.html +0 -0
  3272. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00725_source.html +0 -0
  3273. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00728.html +0 -0
  3274. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00728_source.html +0 -0
  3275. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00731.html +0 -0
  3276. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00731_source.html +0 -0
  3277. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00734.html +0 -0
  3278. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00734_source.html +0 -0
  3279. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00737.html +0 -0
  3280. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00737_source.html +0 -0
  3281. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00740.html +0 -0
  3282. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00740_source.html +0 -0
  3283. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00743.html +0 -0
  3284. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00743_source.html +0 -0
  3285. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00746.html +0 -0
  3286. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00746_source.html +0 -0
  3287. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00749.html +0 -0
  3288. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00749_source.html +0 -0
  3289. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00752.html +0 -0
  3290. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00752_source.html +0 -0
  3291. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00755.html +0 -0
  3292. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00755_source.html +0 -0
  3293. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00758.html +0 -0
  3294. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00758_source.html +0 -0
  3295. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00761.html +0 -0
  3296. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00761_source.html +0 -0
  3297. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00764.html +0 -0
  3298. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00764_source.html +0 -0
  3299. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00767.html +0 -0
  3300. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00767_source.html +0 -0
  3301. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00770.html +0 -0
  3302. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00770_source.html +0 -0
  3303. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00773.html +0 -0
  3304. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00773_source.html +0 -0
  3305. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00776.html +0 -0
  3306. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00776_source.html +0 -0
  3307. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00779.html +0 -0
  3308. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00779_source.html +0 -0
  3309. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00782.html +0 -0
  3310. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00782_source.html +0 -0
  3311. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00785.html +0 -0
  3312. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00785_source.html +0 -0
  3313. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00788.html +0 -0
  3314. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00788_source.html +0 -0
  3315. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00791.html +0 -0
  3316. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00791_source.html +0 -0
  3317. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00794.html +0 -0
  3318. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00794_source.html +0 -0
  3319. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00797.html +0 -0
  3320. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00797_source.html +0 -0
  3321. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00800_source.html +0 -0
  3322. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00803.html +0 -0
  3323. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00804.html +0 -0
  3324. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00805.html +0 -0
  3325. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00806.html +0 -0
  3326. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00807.html +0 -0
  3327. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00808.html +0 -0
  3328. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00809.html +0 -0
  3329. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00810.html +0 -0
  3330. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00811.html +0 -0
  3331. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00812.html +0 -0
  3332. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00813.html +0 -0
  3333. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00814.html +0 -0
  3334. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00815.html +0 -0
  3335. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00816.html +0 -0
  3336. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00817.html +0 -0
  3337. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00818.html +0 -0
  3338. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00819.html +0 -0
  3339. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00820.html +0 -0
  3340. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00821.html +0 -0
  3341. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00822.html +0 -0
  3342. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00823.html +0 -0
  3343. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00824.html +0 -0
  3344. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00825.html +0 -0
  3345. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00826.html +0 -0
  3346. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00827.html +0 -0
  3347. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00828.html +0 -0
  3348. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00829.html +0 -0
  3349. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00830.html +0 -0
  3350. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00831.html +0 -0
  3351. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00832.html +0 -0
  3352. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00833.html +0 -0
  3353. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00834.html +0 -0
  3354. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00835.html +0 -0
  3355. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00836.html +0 -0
  3356. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00837.html +0 -0
  3357. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00838.html +0 -0
  3358. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00839.html +0 -0
  3359. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00840.html +0 -0
  3360. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00841.html +0 -0
  3361. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00842.html +0 -0
  3362. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00843.html +0 -0
  3363. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00844.html +0 -0
  3364. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00845.html +0 -0
  3365. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00846.html +0 -0
  3366. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00847.html +0 -0
  3367. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00848.html +0 -0
  3368. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00849.html +0 -0
  3369. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00850.html +0 -0
  3370. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00851.html +0 -0
  3371. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00852.html +0 -0
  3372. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00853.html +0 -0
  3373. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00854.html +0 -0
  3374. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00855.html +0 -0
  3375. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00856.html +0 -0
  3376. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00857.html +0 -0
  3377. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00858.html +0 -0
  3378. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00859.html +0 -0
  3379. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00860.html +0 -0
  3380. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00861.html +0 -0
  3381. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00862.html +0 -0
  3382. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00863.html +0 -0
  3383. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00864.html +0 -0
  3384. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00865.html +0 -0
  3385. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00866.html +0 -0
  3386. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00867.html +0 -0
  3387. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00868.html +0 -0
  3388. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00869.html +0 -0
  3389. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00870.html +0 -0
  3390. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00871.html +0 -0
  3391. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00872.html +0 -0
  3392. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00873.html +0 -0
  3393. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00874.html +0 -0
  3394. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00875.html +0 -0
  3395. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00876.html +0 -0
  3396. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00877.html +0 -0
  3397. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00878.html +0 -0
  3398. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00879.html +0 -0
  3399. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00880.html +0 -0
  3400. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00881.html +0 -0
  3401. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00882.html +0 -0
  3402. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00883.html +0 -0
  3403. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00884.html +0 -0
  3404. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00885.html +0 -0
  3405. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00886.html +0 -0
  3406. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00887.html +0 -0
  3407. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00888.html +0 -0
  3408. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00889.html +0 -0
  3409. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00890.html +0 -0
  3410. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00891.html +0 -0
  3411. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00892.html +0 -0
  3412. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00893.html +0 -0
  3413. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00894.html +0 -0
  3414. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00895.html +0 -0
  3415. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00896.html +0 -0
  3416. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00897.html +0 -0
  3417. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00898.html +0 -0
  3418. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00899.html +0 -0
  3419. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00900.html +0 -0
  3420. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00901.html +0 -0
  3421. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00902.html +0 -0
  3422. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00903.html +0 -0
  3423. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00904.html +0 -0
  3424. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00905.html +0 -0
  3425. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00906.html +0 -0
  3426. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00907.html +0 -0
  3427. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00908.html +0 -0
  3428. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00909.html +0 -0
  3429. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00910.html +0 -0
  3430. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00911.html +0 -0
  3431. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00912.html +0 -0
  3432. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00913.html +0 -0
  3433. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00914.html +0 -0
  3434. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00915.html +0 -0
  3435. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00916.html +0 -0
  3436. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00917.html +0 -0
  3437. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00918.html +0 -0
  3438. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00919.html +0 -0
  3439. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00920.html +0 -0
  3440. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00921.html +0 -0
  3441. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00922.html +0 -0
  3442. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00923.html +0 -0
  3443. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00924.html +0 -0
  3444. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00925.html +0 -0
  3445. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00926.html +0 -0
  3446. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00927.html +0 -0
  3447. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00928.html +0 -0
  3448. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00929.html +0 -0
  3449. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00930.html +0 -0
  3450. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00931.html +0 -0
  3451. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00932.html +0 -0
  3452. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00933.html +0 -0
  3453. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00934.html +0 -0
  3454. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00935.html +0 -0
  3455. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00936.html +0 -0
  3456. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00937.html +0 -0
  3457. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00938.html +0 -0
  3458. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00939.html +0 -0
  3459. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00940.html +0 -0
  3460. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00941.html +0 -0
  3461. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00942.html +0 -0
  3462. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00943.html +0 -0
  3463. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00944.html +0 -0
  3464. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00945.html +0 -0
  3465. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00946.html +0 -0
  3466. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00947.html +0 -0
  3467. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00948.html +0 -0
  3468. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00949.html +0 -0
  3469. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00950.html +0 -0
  3470. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00951.html +0 -0
  3471. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00952.html +0 -0
  3472. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00953.html +0 -0
  3473. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00954.html +0 -0
  3474. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00955.html +0 -0
  3475. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00956.html +0 -0
  3476. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00957.html +0 -0
  3477. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00958.html +0 -0
  3478. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00959.html +0 -0
  3479. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00960.html +0 -0
  3480. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00961.html +0 -0
  3481. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00962.html +0 -0
  3482. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00963.html +0 -0
  3483. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00964.html +0 -0
  3484. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00965.html +0 -0
  3485. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00966.html +0 -0
  3486. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00967.html +0 -0
  3487. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00968.html +0 -0
  3488. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00969.html +0 -0
  3489. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00970.html +0 -0
  3490. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00971.html +0 -0
  3491. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00972.html +0 -0
  3492. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00973.html +0 -0
  3493. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00974.html +0 -0
  3494. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00975.html +0 -0
  3495. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00976.html +0 -0
  3496. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00977.html +0 -0
  3497. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00978.html +0 -0
  3498. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00979.html +0 -0
  3499. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00980.html +0 -0
  3500. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00981.html +0 -0
  3501. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00982.html +0 -0
  3502. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00983.html +0 -0
  3503. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00984.html +0 -0
  3504. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00985.html +0 -0
  3505. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01558.html +0 -0
  3506. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01558_source.html +0 -0
  3507. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01561.html +0 -0
  3508. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01561_source.html +0 -0
  3509. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01564.html +0 -0
  3510. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01564_source.html +0 -0
  3511. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01567.html +0 -0
  3512. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01567_source.html +0 -0
  3513. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01570.html +0 -0
  3514. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01570_source.html +0 -0
  3515. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01573.html +0 -0
  3516. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01573_source.html +0 -0
  3517. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01576.html +0 -0
  3518. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01576_source.html +0 -0
  3519. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01579.html +0 -0
  3520. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01579_source.html +0 -0
  3521. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01582.html +0 -0
  3522. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01582_source.html +0 -0
  3523. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01585.html +0 -0
  3524. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01585_source.html +0 -0
  3525. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01588.html +0 -0
  3526. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01588_source.html +0 -0
  3527. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01591.html +0 -0
  3528. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01591_source.html +0 -0
  3529. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01594.html +0 -0
  3530. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01594_source.html +0 -0
  3531. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01597.html +0 -0
  3532. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01597_source.html +0 -0
  3533. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01600.html +0 -0
  3534. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01600_source.html +0 -0
  3535. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01603.html +0 -0
  3536. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01603_source.html +0 -0
  3537. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01606.html +0 -0
  3538. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01606_source.html +0 -0
  3539. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/arrowdown.png +0 -0
  3540. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/bc_s.png +0 -0
  3541. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/bdwn.png +0 -0
  3542. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/closed.png +0 -0
  3543. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_382f4fd018b81be8753cb53c0a41a09a.html +0 -0
  3544. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_50f12b6ceb23d7f6adfb377a1ae8b006.html +0 -0
  3545. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_628fd60eb37daf5aa9a81e3983c640b7.html +0 -0
  3546. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_63ed049134a778d525e06b63afc2c979.html +0 -0
  3547. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_885cc87fac2d91e269af0a5a959fa5f6.html +0 -0
  3548. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_b11711034def6a4ce452fe9c451dd3d0.html +0 -0
  3549. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_b171cecbb853a9ee4caace490047c53f.html +0 -0
  3550. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_c98a9ac98258ab9f831b188d66361a70.html +0 -0
  3551. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_d9678a6a9012da969e0b059b39347945.html +0 -0
  3552. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_fca33f1b5115d46f42c670590789c0d2.html +0 -0
  3553. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/doc.png +0 -0
  3554. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/doxygen.css +0 -0
  3555. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/doxygen.png +0 -0
  3556. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dynsections.js +0 -0
  3557. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/files.html +0 -0
  3558. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/folderclosed.png +0 -0
  3559. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/folderopen.png +0 -0
  3560. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/index.html +0 -0
  3561. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/jquery.js +0 -0
  3562. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/logo-mini.png +0 -0
  3563. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/menu.js +0 -0
  3564. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/menudata.js +0 -0
  3565. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/modules.html +0 -0
  3566. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/nav_f.png +0 -0
  3567. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/nav_g.png +0 -0
  3568. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/nav_h.png +0 -0
  3569. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/open.png +0 -0
  3570. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_0.html +0 -0
  3571. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_0.js +0 -0
  3572. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_1.html +0 -0
  3573. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_1.js +0 -0
  3574. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_10.html +0 -0
  3575. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_10.js +0 -0
  3576. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_11.html +0 -0
  3577. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_11.js +0 -0
  3578. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_12.html +0 -0
  3579. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_12.js +0 -0
  3580. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_13.html +0 -0
  3581. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_13.js +0 -0
  3582. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_14.html +0 -0
  3583. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_14.js +0 -0
  3584. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_15.html +0 -0
  3585. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_15.js +0 -0
  3586. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_16.html +0 -0
  3587. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_16.js +0 -0
  3588. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_2.html +0 -0
  3589. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_2.js +0 -0
  3590. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_3.html +0 -0
  3591. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_3.js +0 -0
  3592. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_4.html +0 -0
  3593. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_4.js +0 -0
  3594. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_5.html +0 -0
  3595. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_5.js +0 -0
  3596. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_6.html +0 -0
  3597. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_6.js +0 -0
  3598. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_7.html +0 -0
  3599. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_7.js +0 -0
  3600. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_8.html +0 -0
  3601. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_8.js +0 -0
  3602. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_9.html +0 -0
  3603. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_9.js +0 -0
  3604. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_a.html +0 -0
  3605. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_a.js +0 -0
  3606. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_b.html +0 -0
  3607. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_b.js +0 -0
  3608. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_c.html +0 -0
  3609. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_c.js +0 -0
  3610. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_d.html +0 -0
  3611. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_d.js +0 -0
  3612. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_e.html +0 -0
  3613. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_e.js +0 -0
  3614. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_f.html +0 -0
  3615. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_f.js +0 -0
  3616. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/close.png +0 -0
  3617. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_0.html +0 -0
  3618. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_0.js +0 -0
  3619. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_1.html +0 -0
  3620. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_1.js +0 -0
  3621. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_10.html +0 -0
  3622. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_10.js +0 -0
  3623. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_11.html +0 -0
  3624. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_11.js +0 -0
  3625. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_12.html +0 -0
  3626. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_12.js +0 -0
  3627. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_13.html +0 -0
  3628. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_13.js +0 -0
  3629. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_14.html +0 -0
  3630. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_14.js +0 -0
  3631. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_2.html +0 -0
  3632. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_2.js +0 -0
  3633. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_3.html +0 -0
  3634. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_3.js +0 -0
  3635. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_4.html +0 -0
  3636. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_4.js +0 -0
  3637. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_5.html +0 -0
  3638. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_5.js +0 -0
  3639. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_6.html +0 -0
  3640. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_6.js +0 -0
  3641. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_7.html +0 -0
  3642. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_7.js +0 -0
  3643. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_8.html +0 -0
  3644. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_8.js +0 -0
  3645. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_9.html +0 -0
  3646. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_9.js +0 -0
  3647. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_a.html +0 -0
  3648. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_a.js +0 -0
  3649. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_b.html +0 -0
  3650. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_b.js +0 -0
  3651. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_c.html +0 -0
  3652. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_c.js +0 -0
  3653. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_d.html +0 -0
  3654. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_d.js +0 -0
  3655. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_e.html +0 -0
  3656. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_e.js +0 -0
  3657. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_f.html +0 -0
  3658. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_f.js +0 -0
  3659. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_0.html +0 -0
  3660. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_0.js +0 -0
  3661. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_1.html +0 -0
  3662. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_1.js +0 -0
  3663. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_10.html +0 -0
  3664. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_10.js +0 -0
  3665. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_11.html +0 -0
  3666. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_11.js +0 -0
  3667. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_12.html +0 -0
  3668. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_12.js +0 -0
  3669. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_13.html +0 -0
  3670. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_13.js +0 -0
  3671. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_14.html +0 -0
  3672. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_14.js +0 -0
  3673. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_15.html +0 -0
  3674. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_15.js +0 -0
  3675. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_16.html +0 -0
  3676. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_16.js +0 -0
  3677. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_2.html +0 -0
  3678. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_2.js +0 -0
  3679. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_3.html +0 -0
  3680. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_3.js +0 -0
  3681. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_4.html +0 -0
  3682. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_4.js +0 -0
  3683. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_5.html +0 -0
  3684. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_5.js +0 -0
  3685. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_6.html +0 -0
  3686. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_6.js +0 -0
  3687. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_7.html +0 -0
  3688. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_7.js +0 -0
  3689. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_8.html +0 -0
  3690. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_8.js +0 -0
  3691. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_9.html +0 -0
  3692. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_9.js +0 -0
  3693. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_a.html +0 -0
  3694. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_a.js +0 -0
  3695. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_b.html +0 -0
  3696. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_b.js +0 -0
  3697. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_c.html +0 -0
  3698. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_c.js +0 -0
  3699. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_d.html +0 -0
  3700. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_d.js +0 -0
  3701. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_e.html +0 -0
  3702. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_e.js +0 -0
  3703. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_f.html +0 -0
  3704. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_f.js +0 -0
  3705. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_0.html +0 -0
  3706. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_0.js +0 -0
  3707. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_1.html +0 -0
  3708. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_1.js +0 -0
  3709. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_2.html +0 -0
  3710. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_2.js +0 -0
  3711. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_3.html +0 -0
  3712. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_3.js +0 -0
  3713. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_4.html +0 -0
  3714. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_4.js +0 -0
  3715. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_5.html +0 -0
  3716. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_5.js +0 -0
  3717. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_6.html +0 -0
  3718. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_6.js +0 -0
  3719. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_7.html +0 -0
  3720. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_7.js +0 -0
  3721. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_8.html +0 -0
  3722. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_8.js +0 -0
  3723. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_9.html +0 -0
  3724. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_9.js +0 -0
  3725. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/mag_sel.png +0 -0
  3726. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/nomatches.html +0 -0
  3727. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/pages_0.html +0 -0
  3728. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/pages_0.js +0 -0
  3729. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search.css +0 -0
  3730. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search.js +0 -0
  3731. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search_l.png +0 -0
  3732. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search_m.png +0 -0
  3733. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search_r.png +0 -0
  3734. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/searchdata.js +0 -0
  3735. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_0.html +0 -0
  3736. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_0.js +0 -0
  3737. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_1.html +0 -0
  3738. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_1.js +0 -0
  3739. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_2.html +0 -0
  3740. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_2.js +0 -0
  3741. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_3.html +0 -0
  3742. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_3.js +0 -0
  3743. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_4.html +0 -0
  3744. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_4.js +0 -0
  3745. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_5.html +0 -0
  3746. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_5.js +0 -0
  3747. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_6.html +0 -0
  3748. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_6.js +0 -0
  3749. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_7.html +0 -0
  3750. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_7.js +0 -0
  3751. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_8.html +0 -0
  3752. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_8.js +0 -0
  3753. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_9.html +0 -0
  3754. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_9.js +0 -0
  3755. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_a.html +0 -0
  3756. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_a.js +0 -0
  3757. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_b.html +0 -0
  3758. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_b.js +0 -0
  3759. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_c.html +0 -0
  3760. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_c.js +0 -0
  3761. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_d.html +0 -0
  3762. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_d.js +0 -0
  3763. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/splitbar.png +0 -0
  3764. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/sync_off.png +0 -0
  3765. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/sync_on.png +0 -0
  3766. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tab_a.png +0 -0
  3767. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tab_b.png +0 -0
  3768. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tab_h.png +0 -0
  3769. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tab_s.png +0 -0
  3770. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tabs.css +0 -0
  3771. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/man.doxy +0 -0
  3772. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/frontpage1.png +0 -0
  3773. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/frontpage2.png +0 -0
  3774. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/g-truc.png +0 -0
  3775. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/logo-mini.png +0 -0
  3776. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/logo.png +0 -0
  3777. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin1.jpg +0 -0
  3778. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin2.jpg +0 -0
  3779. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin3.jpg +0 -0
  3780. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin4.png +0 -0
  3781. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin5.png +0 -0
  3782. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin6.png +0 -0
  3783. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex1.jpg +0 -0
  3784. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex2.jpg +0 -0
  3785. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex3.jpg +0 -0
  3786. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-ballrand.png +0 -0
  3787. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-circularrand.png +0 -0
  3788. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-diskrand.png +0 -0
  3789. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-gaussrand.png +0 -0
  3790. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-linearrand.png +0 -0
  3791. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-sphericalrand.png +0 -0
  3792. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-cinder.png +0 -0
  3793. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-glsl4book.jpg +0 -0
  3794. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-leosfortune.jpeg +0 -0
  3795. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-leosfortune2.jpg +0 -0
  3796. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-opencloth1.png +0 -0
  3797. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-opencloth3.png +0 -0
  3798. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-outerra1.jpg +0 -0
  3799. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-outerra2.jpg +0 -0
  3800. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-outerra3.jpg +0 -0
  3801. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-outerra4.jpg +0 -0
  3802. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual.pdf +0 -0
  3803. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/bc_s.png +0 -0
  3804. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/bdwn.png +0 -0
  3805. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/closed.png +0 -0
  3806. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/doc.png +0 -0
  3807. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/doxygen.css +0 -0
  3808. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/doxygen.png +0 -0
  3809. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/folderclosed.png +0 -0
  3810. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/folderopen.png +0 -0
  3811. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/logo-mini.png +0 -0
  3812. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/nav_f.png +0 -0
  3813. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/nav_g.png +0 -0
  3814. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/nav_h.png +0 -0
  3815. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/open.png +0 -0
  3816. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/splitbar.png +0 -0
  3817. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/sync_off.png +0 -0
  3818. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/sync_on.png +0 -0
  3819. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/tab_a.png +0 -0
  3820. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/tab_b.png +0 -0
  3821. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/tab_h.png +0 -0
  3822. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/tab_s.png +0 -0
  3823. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/CMakeLists.txt +0 -0
  3824. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/common.hpp +0 -0
  3825. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_features.hpp +0 -0
  3826. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_fixes.hpp +0 -0
  3827. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_noise.hpp +0 -0
  3828. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_swizzle.hpp +0 -0
  3829. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_swizzle_func.hpp +0 -0
  3830. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_vectorize.hpp +0 -0
  3831. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/compute_common.hpp +0 -0
  3832. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/compute_vector_decl.hpp +0 -0
  3833. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/compute_vector_relational.hpp +0 -0
  3834. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_common.inl +0 -0
  3835. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_common_simd.inl +0 -0
  3836. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_exponential.inl +0 -0
  3837. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_exponential_simd.inl +0 -0
  3838. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_geometric.inl +0 -0
  3839. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_geometric_simd.inl +0 -0
  3840. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_integer.inl +0 -0
  3841. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_integer_simd.inl +0 -0
  3842. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_matrix.inl +0 -0
  3843. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_matrix_simd.inl +0 -0
  3844. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_packing.inl +0 -0
  3845. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_packing_simd.inl +0 -0
  3846. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_trigonometric.inl +0 -0
  3847. /polyscope-2.3.0/deps/polyscope/deps/glm/glm/ext/scalar_packing.inl → /polyscope-2.5.0/deps/polyscope/deps/glm/glm/detail/func_trigonometric_simd.inl +0 -0
  3848. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational.inl +0 -0
  3849. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational_simd.inl +0 -0
  3850. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/glm.cpp +0 -0
  3851. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/qualifier.hpp +0 -0
  3852. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/setup.hpp +0 -0
  3853. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_float.hpp +0 -0
  3854. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_half.hpp +0 -0
  3855. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_half.inl +0 -0
  3856. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.hpp +0 -0
  3857. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.inl +0 -0
  3858. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.hpp +0 -0
  3859. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.inl +0 -0
  3860. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.hpp +0 -0
  3861. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.inl +0 -0
  3862. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.hpp +0 -0
  3863. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.inl +0 -0
  3864. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.hpp +0 -0
  3865. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.inl +0 -0
  3866. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.hpp +0 -0
  3867. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.inl +0 -0
  3868. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.hpp +0 -0
  3869. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.inl +0 -0
  3870. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.hpp +0 -0
  3871. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.inl +0 -0
  3872. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.hpp +0 -0
  3873. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.inl +0 -0
  3874. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4_simd.inl +0 -0
  3875. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_quat.hpp +0 -0
  3876. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_quat.inl +0 -0
  3877. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_quat_simd.inl +0 -0
  3878. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.hpp +0 -0
  3879. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.inl +0 -0
  3880. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.hpp +0 -0
  3881. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.inl +0 -0
  3882. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.hpp +0 -0
  3883. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.inl +0 -0
  3884. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.hpp +0 -0
  3885. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.inl +0 -0
  3886. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec4_simd.inl +0 -0
  3887. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/exponential.hpp +0 -0
  3888. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/_matrix_vectorize.hpp +0 -0
  3889. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.hpp +0 -0
  3890. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.inl +0 -0
  3891. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.hpp +0 -0
  3892. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.inl +0 -0
  3893. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2.hpp +0 -0
  3894. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2_precision.hpp +0 -0
  3895. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3.hpp +0 -0
  3896. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3_precision.hpp +0 -0
  3897. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4.hpp +0 -0
  3898. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4_precision.hpp +0 -0
  3899. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2.hpp +0 -0
  3900. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2_precision.hpp +0 -0
  3901. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3.hpp +0 -0
  3902. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3_precision.hpp +0 -0
  3903. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4.hpp +0 -0
  3904. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4_precision.hpp +0 -0
  3905. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2.hpp +0 -0
  3906. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2_precision.hpp +0 -0
  3907. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3.hpp +0 -0
  3908. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3_precision.hpp +0 -0
  3909. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4.hpp +0 -0
  3910. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4_precision.hpp +0 -0
  3911. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2.hpp +0 -0
  3912. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2_precision.hpp +0 -0
  3913. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3.hpp +0 -0
  3914. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3_precision.hpp +0 -0
  3915. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4.hpp +0 -0
  3916. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4_precision.hpp +0 -0
  3917. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2.hpp +0 -0
  3918. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2_precision.hpp +0 -0
  3919. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3.hpp +0 -0
  3920. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3_precision.hpp +0 -0
  3921. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4.hpp +0 -0
  3922. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4_precision.hpp +0 -0
  3923. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2.hpp +0 -0
  3924. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2_precision.hpp +0 -0
  3925. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3.hpp +0 -0
  3926. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3_precision.hpp +0 -0
  3927. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4.hpp +0 -0
  3928. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4_precision.hpp +0 -0
  3929. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x2.hpp +0 -0
  3930. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x2_sized.hpp +0 -0
  3931. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x3.hpp +0 -0
  3932. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x3_sized.hpp +0 -0
  3933. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x4.hpp +0 -0
  3934. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x4_sized.hpp +0 -0
  3935. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x2.hpp +0 -0
  3936. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x2_sized.hpp +0 -0
  3937. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x3.hpp +0 -0
  3938. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x3_sized.hpp +0 -0
  3939. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x4.hpp +0 -0
  3940. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x4_sized.hpp +0 -0
  3941. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x2.hpp +0 -0
  3942. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x2_sized.hpp +0 -0
  3943. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x3.hpp +0 -0
  3944. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x3_sized.hpp +0 -0
  3945. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x4.hpp +0 -0
  3946. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x4_sized.hpp +0 -0
  3947. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_integer.hpp +0 -0
  3948. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_integer.inl +0 -0
  3949. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.hpp +0 -0
  3950. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.inl +0 -0
  3951. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.hpp +0 -0
  3952. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.inl +0 -0
  3953. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.hpp +0 -0
  3954. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.inl +0 -0
  3955. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x2.hpp +0 -0
  3956. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x2_sized.hpp +0 -0
  3957. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x3.hpp +0 -0
  3958. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x3_sized.hpp +0 -0
  3959. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x4.hpp +0 -0
  3960. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x4_sized.hpp +0 -0
  3961. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x2.hpp +0 -0
  3962. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x2_sized.hpp +0 -0
  3963. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x3.hpp +0 -0
  3964. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x3_sized.hpp +0 -0
  3965. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x4.hpp +0 -0
  3966. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x4_sized.hpp +0 -0
  3967. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x2.hpp +0 -0
  3968. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x2_sized.hpp +0 -0
  3969. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x3.hpp +0 -0
  3970. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x3_sized.hpp +0 -0
  3971. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x4.hpp +0 -0
  3972. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x4_sized.hpp +0 -0
  3973. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.hpp +0 -0
  3974. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.inl +0 -0
  3975. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common_simd.inl +0 -0
  3976. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double.hpp +0 -0
  3977. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double_precision.hpp +0 -0
  3978. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.hpp +0 -0
  3979. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.inl +0 -0
  3980. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float.hpp +0 -0
  3981. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float_precision.hpp +0 -0
  3982. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.hpp +0 -0
  3983. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.inl +0 -0
  3984. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.hpp +0 -0
  3985. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.inl +0 -0
  3986. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.hpp +0 -0
  3987. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.inl +0 -0
  3988. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.hpp +0 -0
  3989. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.inl +0 -0
  3990. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.hpp +0 -0
  3991. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.inl +0 -0
  3992. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.hpp +0 -0
  3993. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.inl +0 -0
  3994. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_int_sized.hpp +0 -0
  3995. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.hpp +0 -0
  3996. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.inl +0 -0
  3997. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_packing.hpp +0 -0
  3998. /polyscope-2.3.0/deps/polyscope/deps/glm/glm/ext/vector_packing.inl → /polyscope-2.5.0/deps/polyscope/deps/glm/glm/ext/scalar_packing.inl +0 -0
  3999. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_reciprocal.hpp +0 -0
  4000. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_reciprocal.inl +0 -0
  4001. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.hpp +0 -0
  4002. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.inl +0 -0
  4003. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_uint_sized.hpp +0 -0
  4004. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.hpp +0 -0
  4005. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.inl +0 -0
  4006. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1.hpp +0 -0
  4007. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1_precision.hpp +0 -0
  4008. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2.hpp +0 -0
  4009. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2_precision.hpp +0 -0
  4010. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3.hpp +0 -0
  4011. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3_precision.hpp +0 -0
  4012. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4.hpp +0 -0
  4013. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4_precision.hpp +0 -0
  4014. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_common.hpp +0 -0
  4015. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_common.inl +0 -0
  4016. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double1.hpp +0 -0
  4017. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double1_precision.hpp +0 -0
  4018. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double2.hpp +0 -0
  4019. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double2_precision.hpp +0 -0
  4020. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double3.hpp +0 -0
  4021. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double3_precision.hpp +0 -0
  4022. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double4.hpp +0 -0
  4023. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double4_precision.hpp +0 -0
  4024. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float1.hpp +0 -0
  4025. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float1_precision.hpp +0 -0
  4026. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float2.hpp +0 -0
  4027. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float2_precision.hpp +0 -0
  4028. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float3.hpp +0 -0
  4029. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float3_precision.hpp +0 -0
  4030. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float4.hpp +0 -0
  4031. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float4_precision.hpp +0 -0
  4032. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int1.hpp +0 -0
  4033. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int1_sized.hpp +0 -0
  4034. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int2.hpp +0 -0
  4035. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int2_sized.hpp +0 -0
  4036. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int3.hpp +0 -0
  4037. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int3_sized.hpp +0 -0
  4038. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int4.hpp +0 -0
  4039. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int4_sized.hpp +0 -0
  4040. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.hpp +0 -0
  4041. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.inl +0 -0
  4042. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_packing.hpp +0 -0
  4043. /polyscope-2.3.0/deps/polyscope/deps/glm/glm/gtc/quaternion_simd.inl → /polyscope-2.5.0/deps/polyscope/deps/glm/glm/ext/vector_packing.inl +0 -0
  4044. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_reciprocal.hpp +0 -0
  4045. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_reciprocal.inl +0 -0
  4046. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.hpp +0 -0
  4047. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.inl +0 -0
  4048. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1.hpp +0 -0
  4049. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1_sized.hpp +0 -0
  4050. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2.hpp +0 -0
  4051. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2_sized.hpp +0 -0
  4052. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3.hpp +0 -0
  4053. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3_sized.hpp +0 -0
  4054. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4.hpp +0 -0
  4055. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4_sized.hpp +0 -0
  4056. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.hpp +0 -0
  4057. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.inl +0 -0
  4058. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext.hpp +0 -0
  4059. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/fwd.hpp +0 -0
  4060. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/geometric.hpp +0 -0
  4061. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/glm.cppm +0 -0
  4062. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/glm.hpp +0 -0
  4063. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.hpp +0 -0
  4064. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.inl +0 -0
  4065. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/color_space.hpp +0 -0
  4066. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/color_space.inl +0 -0
  4067. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/constants.hpp +0 -0
  4068. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/constants.inl +0 -0
  4069. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.hpp +0 -0
  4070. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.inl +0 -0
  4071. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/integer.hpp +0 -0
  4072. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/integer.inl +0 -0
  4073. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.hpp +0 -0
  4074. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.inl +0 -0
  4075. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_integer.hpp +0 -0
  4076. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.hpp +0 -0
  4077. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.inl +0 -0
  4078. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.hpp +0 -0
  4079. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.inl +0 -0
  4080. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/noise.hpp +0 -0
  4081. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/noise.inl +0 -0
  4082. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/packing.hpp +0 -0
  4083. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/packing.inl +0 -0
  4084. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.hpp +0 -0
  4085. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.inl +0 -0
  4086. /polyscope-2.3.0/src/polyscope_bindings/__init__.pyi → /polyscope-2.5.0/deps/polyscope/deps/glm/glm/gtc/quaternion_simd.inl +0 -0
  4087. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/random.hpp +0 -0
  4088. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/random.inl +0 -0
  4089. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/reciprocal.hpp +0 -0
  4090. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/round.hpp +0 -0
  4091. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/round.inl +0 -0
  4092. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_aligned.hpp +0 -0
  4093. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.hpp +0 -0
  4094. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.inl +0 -0
  4095. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.hpp +0 -0
  4096. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.inl +0 -0
  4097. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/ulp.hpp +0 -0
  4098. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/ulp.inl +0 -0
  4099. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/vec1.hpp +0 -0
  4100. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.hpp +0 -0
  4101. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.inl +0 -0
  4102. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/bit.hpp +0 -0
  4103. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/bit.inl +0 -0
  4104. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.hpp +0 -0
  4105. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.inl +0 -0
  4106. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.hpp +0 -0
  4107. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.inl +0 -0
  4108. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_space.hpp +0 -0
  4109. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_space.inl +0 -0
  4110. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.hpp +0 -0
  4111. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.inl +0 -0
  4112. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/common.hpp +0 -0
  4113. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/common.inl +0 -0
  4114. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.hpp +0 -0
  4115. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.inl +0 -0
  4116. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.hpp +0 -0
  4117. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.inl +0 -0
  4118. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.hpp +0 -0
  4119. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.inl +0 -0
  4120. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/easing.hpp +0 -0
  4121. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/easing.inl +0 -0
  4122. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.hpp +0 -0
  4123. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.inl +0 -0
  4124. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/extend.hpp +0 -0
  4125. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/extend.inl +0 -0
  4126. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.hpp +0 -0
  4127. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.inl +0 -0
  4128. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.hpp +0 -0
  4129. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.inl +0 -0
  4130. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.hpp +0 -0
  4131. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.inl +0 -0
  4132. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.hpp +0 -0
  4133. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.inl +0 -0
  4134. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.hpp +0 -0
  4135. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.inl +0 -0
  4136. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/float_notmalize.inl +0 -0
  4137. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/functions.hpp +0 -0
  4138. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/functions.inl +0 -0
  4139. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.hpp +0 -0
  4140. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.inl +0 -0
  4141. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.hpp +0 -0
  4142. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.inl +0 -0
  4143. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/hash.hpp +0 -0
  4144. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/hash.inl +0 -0
  4145. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/integer.hpp +0 -0
  4146. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/integer.inl +0 -0
  4147. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/intersect.hpp +0 -0
  4148. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/intersect.inl +0 -0
  4149. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/io.hpp +0 -0
  4150. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/io.inl +0 -0
  4151. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/log_base.hpp +0 -0
  4152. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/log_base.inl +0 -0
  4153. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.hpp +0 -0
  4154. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.inl +0 -0
  4155. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.hpp +0 -0
  4156. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.inl +0 -0
  4157. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.hpp +0 -0
  4158. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.inl +0 -0
  4159. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.hpp +0 -0
  4160. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.inl +0 -0
  4161. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.hpp +0 -0
  4162. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.inl +0 -0
  4163. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.hpp +0 -0
  4164. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.inl +0 -0
  4165. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.hpp +0 -0
  4166. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.inl +0 -0
  4167. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.hpp +0 -0
  4168. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.inl +0 -0
  4169. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.hpp +0 -0
  4170. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.inl +0 -0
  4171. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/norm.hpp +0 -0
  4172. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/norm.inl +0 -0
  4173. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/normal.hpp +0 -0
  4174. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/normal.inl +0 -0
  4175. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.hpp +0 -0
  4176. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.inl +0 -0
  4177. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/number_precision.hpp +0 -0
  4178. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.hpp +0 -0
  4179. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.inl +0 -0
  4180. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.hpp +0 -0
  4181. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.inl +0 -0
  4182. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/pca.hpp +0 -0
  4183. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/pca.inl +0 -0
  4184. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.hpp +0 -0
  4185. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.inl +0 -0
  4186. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.hpp +0 -0
  4187. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.inl +0 -0
  4188. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/projection.hpp +0 -0
  4189. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/projection.inl +0 -0
  4190. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.hpp +0 -0
  4191. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.inl +0 -0
  4192. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/range.hpp +0 -0
  4193. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.hpp +0 -0
  4194. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.inl +0 -0
  4195. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.hpp +0 -0
  4196. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.inl +0 -0
  4197. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.hpp +0 -0
  4198. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.inl +0 -0
  4199. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/scalar_multiplication.hpp +0 -0
  4200. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.hpp +0 -0
  4201. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.inl +0 -0
  4202. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/spline.hpp +0 -0
  4203. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/spline.inl +0 -0
  4204. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.hpp +0 -0
  4205. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.inl +0 -0
  4206. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.hpp +0 -0
  4207. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.inl +0 -0
  4208. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/texture.hpp +0 -0
  4209. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/texture.inl +0 -0
  4210. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/transform.hpp +0 -0
  4211. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/transform.inl +0 -0
  4212. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/transform2.hpp +0 -0
  4213. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/transform2.inl +0 -0
  4214. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.hpp +0 -0
  4215. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.inl +0 -0
  4216. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.hpp +0 -0
  4217. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.inl +0 -0
  4218. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vec_swizzle.hpp +0 -0
  4219. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.hpp +0 -0
  4220. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.inl +0 -0
  4221. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.hpp +0 -0
  4222. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.inl +0 -0
  4223. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/wrap.hpp +0 -0
  4224. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/wrap.inl +0 -0
  4225. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/integer.hpp +0 -0
  4226. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat2x2.hpp +0 -0
  4227. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat2x3.hpp +0 -0
  4228. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat2x4.hpp +0 -0
  4229. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat3x2.hpp +0 -0
  4230. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat3x3.hpp +0 -0
  4231. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat3x4.hpp +0 -0
  4232. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat4x2.hpp +0 -0
  4233. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat4x3.hpp +0 -0
  4234. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat4x4.hpp +0 -0
  4235. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/matrix.hpp +0 -0
  4236. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/packing.hpp +0 -0
  4237. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/common.h +0 -0
  4238. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/exponential.h +0 -0
  4239. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/geometric.h +0 -0
  4240. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/integer.h +0 -0
  4241. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/matrix.h +0 -0
  4242. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/neon.h +0 -0
  4243. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/packing.h +0 -0
  4244. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/platform.h +0 -0
  4245. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/trigonometric.h +0 -0
  4246. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/vector_relational.h +0 -0
  4247. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/trigonometric.hpp +0 -0
  4248. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/vec2.hpp +0 -0
  4249. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/vec3.hpp +0 -0
  4250. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/vec4.hpp +0 -0
  4251. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/vector_relational.hpp +0 -0
  4252. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/manual.md +0 -0
  4253. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/readme.md +0 -0
  4254. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/CMakeLists.txt +0 -0
  4255. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/bug/CMakeLists.txt +0 -0
  4256. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/bug/bug_ms_vec_static.cpp +0 -0
  4257. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/cmake/CMakeLists.txt +0 -0
  4258. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/cmake/test_find_glm.cpp +0 -0
  4259. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/CMakeLists.txt +0 -0
  4260. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_cpp_constexpr.cpp +0 -0
  4261. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_cpp_defaulted_ctor.cpp +0 -0
  4262. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_aligned_gentypes.cpp +0 -0
  4263. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_arch_unknown.cpp +0 -0
  4264. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_compiler_unknown.cpp +0 -0
  4265. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_ctor_init.cpp +0 -0
  4266. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_depth_zero_to_one.cpp +0 -0
  4267. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_explicit_ctor.cpp +0 -0
  4268. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_inline.cpp +0 -0
  4269. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_left_handed.cpp +0 -0
  4270. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_platform_unknown.cpp +0 -0
  4271. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_pure.cpp +0 -0
  4272. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_quat_wxyz.cpp +0 -0
  4273. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_size_t_length.cpp +0 -0
  4274. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_unrestricted_gentype.cpp +0 -0
  4275. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_xyzw_only.cpp +0 -0
  4276. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_common.cpp +0 -0
  4277. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_exponential.cpp +0 -0
  4278. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_geometric.cpp +0 -0
  4279. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_integer.cpp +0 -0
  4280. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_integer_bit_count.cpp +0 -0
  4281. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_integer_find_lsb.cpp +0 -0
  4282. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_integer_find_msb.cpp +0 -0
  4283. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_matrix.cpp +0 -0
  4284. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_noise.cpp +0 -0
  4285. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_packing.cpp +0 -0
  4286. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_swizzle.cpp +0 -0
  4287. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_trigonometric.cpp +0 -0
  4288. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_vector_relational.cpp +0 -0
  4289. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx03.cpp +0 -0
  4290. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx98.cpp +0 -0
  4291. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx_unknown.cpp +0 -0
  4292. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_force_size_t_length.cpp +0 -0
  4293. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_message.cpp +0 -0
  4294. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_platform_unknown.cpp +0 -0
  4295. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_precision.cpp +0 -0
  4296. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_aligned.cpp +0 -0
  4297. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_cast.cpp +0 -0
  4298. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_ctor.cpp +0 -0
  4299. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_int.cpp +0 -0
  4300. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_length.cpp +0 -0
  4301. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x2.cpp +0 -0
  4302. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x3.cpp +0 -0
  4303. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x4.cpp +0 -0
  4304. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x2.cpp +0 -0
  4305. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x3.cpp +0 -0
  4306. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x4.cpp +0 -0
  4307. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x2.cpp +0 -0
  4308. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x3.cpp +0 -0
  4309. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x4.cpp +0 -0
  4310. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_vec1.cpp +0 -0
  4311. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_vec2.cpp +0 -0
  4312. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_vec3.cpp +0 -0
  4313. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_vec4.cpp +0 -0
  4314. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/CMakeLists.txt +0 -0
  4315. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_clip_space.cpp +0 -0
  4316. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_common.cpp +0 -0
  4317. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x2_sized.cpp +0 -0
  4318. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x3_sized.cpp +0 -0
  4319. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x4_sized.cpp +0 -0
  4320. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x2_sized.cpp +0 -0
  4321. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x3_sized.cpp +0 -0
  4322. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x4_sized.cpp +0 -0
  4323. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x2_sized.cpp +0 -0
  4324. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x3_sized.cpp +0 -0
  4325. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x4_sized.cpp +0 -0
  4326. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_integer.cpp +0 -0
  4327. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_projection.cpp +0 -0
  4328. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_relational.cpp +0 -0
  4329. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_transform.cpp +0 -0
  4330. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x2_sized.cpp +0 -0
  4331. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x3_sized.cpp +0 -0
  4332. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x4_sized.cpp +0 -0
  4333. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x2_sized.cpp +0 -0
  4334. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x3_sized.cpp +0 -0
  4335. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x4_sized.cpp +0 -0
  4336. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x2_sized.cpp +0 -0
  4337. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x3_sized.cpp +0 -0
  4338. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x4_sized.cpp +0 -0
  4339. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_common.cpp +0 -0
  4340. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_exponential.cpp +0 -0
  4341. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_geometric.cpp +0 -0
  4342. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_relational.cpp +0 -0
  4343. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_transform.cpp +0 -0
  4344. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_trigonometric.cpp +0 -0
  4345. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_type.cpp +0 -0
  4346. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_common.cpp +0 -0
  4347. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_constants.cpp +0 -0
  4348. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_int_sized.cpp +0 -0
  4349. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_integer.cpp +0 -0
  4350. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_packing.cpp +0 -0
  4351. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_reciprocal.cpp +0 -0
  4352. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_relational.cpp +0 -0
  4353. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_uint_sized.cpp +0 -0
  4354. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_ulp.cpp +0 -0
  4355. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vec1.cpp +0 -0
  4356. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_bool1.cpp +0 -0
  4357. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_common.cpp +0 -0
  4358. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_iec559.cpp +0 -0
  4359. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int1_sized.cpp +0 -0
  4360. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int2_sized.cpp +0 -0
  4361. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int3_sized.cpp +0 -0
  4362. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int4_sized.cpp +0 -0
  4363. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_integer.cpp +0 -0
  4364. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_integer_sized.cpp +0 -0
  4365. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_packing.cpp +0 -0
  4366. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_reciprocal.cpp +0 -0
  4367. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_relational.cpp +0 -0
  4368. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint1_sized.cpp +0 -0
  4369. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint2_sized.cpp +0 -0
  4370. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint3_sized.cpp +0 -0
  4371. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint4_sized.cpp +0 -0
  4372. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_ulp.cpp +0 -0
  4373. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/glm.cppcheck +0 -0
  4374. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/CMakeLists.txt +0 -0
  4375. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_bitfield.cpp +0 -0
  4376. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_color_space.cpp +0 -0
  4377. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_constants.cpp +0 -0
  4378. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_epsilon.cpp +0 -0
  4379. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_integer.cpp +0 -0
  4380. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_access.cpp +0 -0
  4381. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_integer.cpp +0 -0
  4382. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_inverse.cpp +0 -0
  4383. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_transform.cpp +0 -0
  4384. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_noise.cpp +0 -0
  4385. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_packing.cpp +0 -0
  4386. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_quaternion.cpp +0 -0
  4387. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_random.cpp +0 -0
  4388. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_reciprocal.cpp +0 -0
  4389. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_round.cpp +0 -0
  4390. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_aligned.cpp +0 -0
  4391. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_precision.cpp +0 -0
  4392. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_ptr.cpp +0 -0
  4393. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_ulp.cpp +0 -0
  4394. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_user_defined_types.cpp +0 -0
  4395. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_vec1.cpp +0 -0
  4396. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/CMakeLists.txt +0 -0
  4397. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx.cpp +0 -0
  4398. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_associated_min_max.cpp +0 -0
  4399. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_closest_point.cpp +0 -0
  4400. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_encoding.cpp +0 -0
  4401. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_space.cpp +0 -0
  4402. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_space_YCoCg.cpp +0 -0
  4403. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_common.cpp +0 -0
  4404. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_compatibility.cpp +0 -0
  4405. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_component_wise.cpp +0 -0
  4406. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_dual_quaternion.cpp +0 -0
  4407. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_easing.cpp +0 -0
  4408. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_euler_angle.cpp +0 -0
  4409. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_extend.cpp +0 -0
  4410. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_extended_min_max.cpp +0 -0
  4411. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_extented_min_max.cpp +0 -0
  4412. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_exterior_product.cpp +0 -0
  4413. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_exponential.cpp +0 -0
  4414. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_square_root.cpp +0 -0
  4415. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_trigonometry.cpp +0 -0
  4416. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_functions.cpp +0 -0
  4417. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_gradient_paint.cpp +0 -0
  4418. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_handed_coordinate_space.cpp +0 -0
  4419. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_hash.cpp +0 -0
  4420. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_int_10_10_10_2.cpp +0 -0
  4421. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_integer.cpp +0 -0
  4422. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_intersect.cpp +0 -0
  4423. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_io.cpp +0 -0
  4424. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_load.cpp +0 -0
  4425. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_log_base.cpp +0 -0
  4426. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_cross_product.cpp +0 -0
  4427. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_decompose.cpp +0 -0
  4428. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_factorisation.cpp +0 -0
  4429. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_interpolation.cpp +0 -0
  4430. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_major_storage.cpp +0 -0
  4431. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_operation.cpp +0 -0
  4432. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_query.cpp +0 -0
  4433. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_transform_2d.cpp +0 -0
  4434. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_mixed_product.cpp +0 -0
  4435. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_norm.cpp +0 -0
  4436. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_normal.cpp +0 -0
  4437. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_normalize_dot.cpp +0 -0
  4438. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_optimum_pow.cpp +0 -0
  4439. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_orthonormalize.cpp +0 -0
  4440. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_pca.cpp +0 -0
  4441. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_perpendicular.cpp +0 -0
  4442. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_polar_coordinates.cpp +0 -0
  4443. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_projection.cpp +0 -0
  4444. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_quaternion.cpp +0 -0
  4445. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_random.cpp +0 -0
  4446. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_range.cpp +0 -0
  4447. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_rotate_normalized_axis.cpp +0 -0
  4448. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_rotate_vector.cpp +0 -0
  4449. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_scalar_multiplication.cpp +0 -0
  4450. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_scalar_relational.cpp +0 -0
  4451. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_simd_mat4.cpp +0 -0
  4452. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_simd_vec4.cpp +0 -0
  4453. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_spline.cpp +0 -0
  4454. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_string_cast.cpp +0 -0
  4455. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_texture.cpp +0 -0
  4456. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_type_aligned.cpp +0 -0
  4457. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_type_trait.cpp +0 -0
  4458. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_vec_swizzle.cpp +0 -0
  4459. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_vector_angle.cpp +0 -0
  4460. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_vector_query.cpp +0 -0
  4461. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_wrap.cpp +0 -0
  4462. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/CMakeLists.txt +0 -0
  4463. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_div.cpp +0 -0
  4464. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_inverse.cpp +0 -0
  4465. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_mul.cpp +0 -0
  4466. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_mul_vector.cpp +0 -0
  4467. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_transpose.cpp +0 -0
  4468. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_vector_mul_matrix.cpp +0 -0
  4469. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/util/autoexp.txt +0 -0
  4470. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/util/autoexp.vc2010.dat +0 -0
  4471. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/util/glm.natvis +0 -0
  4472. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/util/usertype.dat +0 -0
  4473. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/.gitignore +0 -0
  4474. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/.travis.yml +0 -0
  4475. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/LICENSE +0 -0
  4476. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/README.md +0 -0
  4477. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/happly.h +0 -0
  4478. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/happly_logo.jpg +0 -0
  4479. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/CMakeLists.txt +0 -0
  4480. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/CMakeLists.txt.in +0 -0
  4481. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/main_test.cpp +0 -0
  4482. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf.ply +0 -0
  4483. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_ascii.ply +0 -0
  4484. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_big_endian.ply +0 -0
  4485. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.editorconfig +0 -0
  4486. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.gitattributes +0 -0
  4487. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.github/ISSUE_TEMPLATE/config.yml +0 -0
  4488. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.github/pull_request_template.md +0 -0
  4489. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/scheduled.yml +0 -0
  4490. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/static-analysis.yml +0 -0
  4491. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/generate_spv.sh +0 -0
  4492. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.frag +0 -0
  4493. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.vert +0 -0
  4494. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/README.txt +0 -0
  4495. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj +0 -0
  4496. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters +0 -0
  4497. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/imconfig_allegro5.h +0 -0
  4498. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/main.cpp +0 -0
  4499. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/CMakeLists.txt +0 -0
  4500. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/.gitignore +0 -0
  4501. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/java/MainActivity.kt +0 -0
  4502. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/build.gradle +0 -0
  4503. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/settings.gradle +0 -0
  4504. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/README.md +0 -0
  4505. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/Info-iOS.plist +0 -0
  4506. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard +0 -0
  4507. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/Info-macOS.plist +0 -0
  4508. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard +0 -0
  4509. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj +0 -0
  4510. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_opengl2/main.mm +0 -0
  4511. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/Makefile +0 -0
  4512. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/main.mm +0 -0
  4513. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/Makefile +0 -0
  4514. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/build_win32.bat +0 -0
  4515. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj +0 -0
  4516. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters +0 -0
  4517. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile +0 -0
  4518. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/build_win32.bat +0 -0
  4519. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj +0 -0
  4520. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters +0 -0
  4521. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters +0 -0
  4522. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/Makefile +0 -0
  4523. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj +0 -0
  4524. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters +0 -0
  4525. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/main.cpp +0 -0
  4526. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/build_win32.bat +0 -0
  4527. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/main.cpp +0 -0
  4528. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/build_win32.bat +0 -0
  4529. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj +0 -0
  4530. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj.filters +0 -0
  4531. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_metal/Makefile +0 -0
  4532. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_metal/main.mm +0 -0
  4533. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/Makefile +0 -0
  4534. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/README.md +0 -0
  4535. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/build_win32.bat +0 -0
  4536. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj +0 -0
  4537. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj.filters +0 -0
  4538. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/Makefile +0 -0
  4539. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/README.md +0 -0
  4540. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/build_win32.bat +0 -0
  4541. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj +0 -0
  4542. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj.filters +0 -0
  4543. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/Makefile +0 -0
  4544. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/README.md +0 -0
  4545. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/build_win32.bat +0 -0
  4546. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj +0 -0
  4547. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj.filters +0 -0
  4548. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters +0 -0
  4549. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj +0 -0
  4550. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj.filters +0 -0
  4551. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/build_win32.bat +0 -0
  4552. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj +0 -0
  4553. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj.filters +0 -0
  4554. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/build_win32.bat +0 -0
  4555. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj +0 -0
  4556. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters +0 -0
  4557. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/build_win32.bat +0 -0
  4558. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj +0 -0
  4559. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters +0 -0
  4560. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters +0 -0
  4561. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/build_win32.bat +0 -0
  4562. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj +0 -0
  4563. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters +0 -0
  4564. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/build_win32.bat +0 -0
  4565. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj +0 -0
  4566. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj.filters +0 -0
  4567. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/emscripten/shell_minimal.html +0 -0
  4568. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/COPYING.txt +0 -0
  4569. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3.h +0 -0
  4570. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3native.h +0 -0
  4571. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/README.txt +0 -0
  4572. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.c +0 -0
  4573. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/imstb_rectpack.h +0 -0
  4574. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/README.txt +0 -0
  4575. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/README.txt +0 -0
  4576. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/README.txt +0 -0
  4577. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.gdb +0 -0
  4578. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natstepfilter +0 -0
  4579. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natvis +0 -0
  4580. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
  4581. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/DroidSans.ttf +0 -0
  4582. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Karla-Regular.ttf +0 -0
  4583. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyClean.ttf +0 -0
  4584. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyTiny.ttf +0 -0
  4585. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
  4586. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/single_file/imgui_single_file.h +0 -0
  4587. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/json/CMakeLists.txt +0 -0
  4588. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/json/LICENSE.MIT +0 -0
  4589. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/json/README.md +0 -0
  4590. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/json/include/nlohmann/json.hpp +0 -0
  4591. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/stb/CMakeLists.txt +0 -0
  4592. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/stb/stb_image.h +0 -0
  4593. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/stb/stb_image_write.h +0 -0
  4594. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/stb/stb_impl.cpp +0 -0
  4595. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/CMakeLists.txt +0 -0
  4596. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.cpp +0 -0
  4597. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.h +0 -0
  4598. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/surface_mesh_io.cpp +0 -0
  4599. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/surface_mesh_io.h +0 -0
  4600. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/affine_remapper.h +0 -0
  4601. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/camera_parameters.ipp +0 -0
  4602. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/camera_view.ipp +0 -0
  4603. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/color_image_quantity.h +0 -0
  4604. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/color_management.h +0 -0
  4605. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/color_render_image_quantity.h +0 -0
  4606. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/colors.h +0 -0
  4607. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/combining_hash_functions.h +0 -0
  4608. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/curve_network.ipp +0 -0
  4609. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/curve_network_color_quantity.h +0 -0
  4610. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/curve_network_scalar_quantity.h +0 -0
  4611. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/curve_network_vector_quantity.h +0 -0
  4612. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/depth_render_image_quantity.h +0 -0
  4613. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/disjoint_sets.h +0 -0
  4614. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/file_helpers.h +0 -0
  4615. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/floating_quantities.h +0 -0
  4616. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/floating_quantity_structure.ipp +0 -0
  4617. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/fullscreen_artist.h +0 -0
  4618. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/group.h +0 -0
  4619. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/image_quantity.h +0 -0
  4620. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/image_quantity_base.h +0 -0
  4621. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/imgui_config.h +0 -0
  4622. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/implicit_helpers.h +0 -0
  4623. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/implicit_helpers.ipp +0 -0
  4624. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/internal.h +0 -0
  4625. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/parameterization_quantity.h +0 -0
  4626. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/pick.ipp +0 -0
  4627. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud.ipp +0 -0
  4628. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud_color_quantity.h +0 -0
  4629. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud_parameterization_quantity.h +0 -0
  4630. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud_scalar_quantity.h +0 -0
  4631. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud_vector_quantity.h +0 -0
  4632. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/quantity.ipp +0 -0
  4633. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/ragged_nested_array.h +0 -0
  4634. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/raw_color_alpha_render_image_quantity.h +0 -0
  4635. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/raw_color_render_image_quantity.h +0 -0
  4636. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/engine.ipp +0 -0
  4637. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/managed_buffer.ipp +0 -0
  4638. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/material_defs.h +0 -0
  4639. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/materials.h +0 -0
  4640. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/gl_engine.h +0 -0
  4641. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/gl_shaders.h +0 -0
  4642. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/common.h +0 -0
  4643. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/gizmo_shaders.h +0 -0
  4644. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/grid_shaders.h +0 -0
  4645. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/ground_plane_shaders.h +0 -0
  4646. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/lighting_shaders.h +0 -0
  4647. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/ribbon_shaders.h +0 -0
  4648. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/sphere_shaders.h +0 -0
  4649. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/texture_draw_shaders.h +0 -0
  4650. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/vector_shaders.h +0 -0
  4651. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/volume_mesh_shaders.h +0 -0
  4652. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/shader_builder.h +0 -0
  4653. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/templated_buffers.h +0 -0
  4654. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/scalar_image_quantity.h +0 -0
  4655. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/scalar_render_image_quantity.h +0 -0
  4656. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/scaled_value.h +0 -0
  4657. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/simple_triangle_mesh.ipp +0 -0
  4658. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/standardize_data_array.h +0 -0
  4659. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/structure.ipp +0 -0
  4660. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/surface_mesh.ipp +0 -0
  4661. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/surface_vector_quantity.h +0 -0
  4662. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/transformation_gizmo.h +0 -0
  4663. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/utilities.h +0 -0
  4664. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/vector_quantity.h +0 -0
  4665. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_grid.ipp +0 -0
  4666. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_grid_scalar_quantity.h +0 -0
  4667. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_mesh.ipp +0 -0
  4668. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_mesh_color_quantity.h +0 -0
  4669. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_mesh_scalar_quantity.h +0 -0
  4670. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_mesh_vector_quantity.h +0 -0
  4671. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/weak_handle.h +0 -0
  4672. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/widget.h +0 -0
  4673. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/file2c/file2cpp.c +0 -0
  4674. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/format_all_macOS.sh +0 -0
  4675. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/.gitignore +0 -0
  4676. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/bin2vector.c +0 -0
  4677. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/concrete_seamless.jpg +0 -0
  4678. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/image2material.cpp +0 -0
  4679. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/imagesrgb2material.cpp +0 -0
  4680. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/render_material.blend +0 -0
  4681. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/color_render_image_quantity.cpp +0 -0
  4682. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/curve_network_color_quantity.cpp +0 -0
  4683. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/curve_network_vector_quantity.cpp +0 -0
  4684. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/depth_render_image_quantity.cpp +0 -0
  4685. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/disjoint_sets.cpp +0 -0
  4686. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/floating_quantity.cpp +0 -0
  4687. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/fullscreen_artist.cpp +0 -0
  4688. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/group.cpp +0 -0
  4689. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/internal.cpp +0 -0
  4690. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/marching_cubes.cpp +0 -0
  4691. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/point_cloud_color_quantity.cpp +0 -0
  4692. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/point_cloud_parameterization_quantity.cpp +0 -0
  4693. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/point_cloud_scalar_quantity.cpp +0 -0
  4694. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/point_cloud_vector_quantity.cpp +0 -0
  4695. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/raw_color_alpha_render_image_quantity.cpp +0 -0
  4696. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/raw_color_render_image_quantity.cpp +0 -0
  4697. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_candy.cpp +0 -0
  4698. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_ceramic.cpp +0 -0
  4699. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_clay.cpp +0 -0
  4700. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_flat.cpp +0 -0
  4701. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_font_cousine_regular.cpp +0 -0
  4702. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_font_lato_regular.cpp +0 -0
  4703. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_jade.cpp +0 -0
  4704. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_mud.cpp +0 -0
  4705. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_normal.cpp +0 -0
  4706. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_wax.cpp +0 -0
  4707. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/concrete_seamless.cpp +0 -0
  4708. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/materials.cpp +0 -0
  4709. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/gizmo_shaders.cpp +0 -0
  4710. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/ground_plane_shaders.cpp +0 -0
  4711. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/ribbon_shaders.cpp +0 -0
  4712. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/sphere_shaders.cpp +0 -0
  4713. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/texture_draw_shaders.cpp +0 -0
  4714. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/vector_shaders.cpp +0 -0
  4715. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/volume_mesh_shaders.cpp +0 -0
  4716. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/templated_buffers.cpp +0 -0
  4717. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/state.cpp +0 -0
  4718. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/surface_vector_quantity.cpp +0 -0
  4719. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/transformation_gizmo.cpp +0 -0
  4720. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/utilities.cpp +0 -0
  4721. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/volume_mesh_color_quantity.cpp +0 -0
  4722. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/volume_mesh_scalar_quantity.cpp +0 -0
  4723. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/volume_mesh_vector_quantity.cpp +0 -0
  4724. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/weak_handle.cpp +0 -0
  4725. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/widget.cpp +0 -0
  4726. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/CMakeLists.txt.in +0 -0
  4727. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/array_adaptors_test.cpp +0 -0
  4728. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/combo_test.cpp +0 -0
  4729. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/group_test.cpp +0 -0
  4730. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/interop_and_serialization_test.cpp +0 -0
  4731. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/main_test.cpp +0 -0
  4732. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/misc_test.cpp +0 -0
  4733. {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/volume_grid_test.cpp +0 -0
  4734. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/attr.h +0 -0
  4735. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/chrono.h +0 -0
  4736. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/common.h +0 -0
  4737. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/complex.h +0 -0
  4738. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/detail/typeid.h +0 -0
  4739. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/eigen/common.h +0 -0
  4740. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/eigen.h +0 -0
  4741. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/eval.h +0 -0
  4742. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/iostream.h +0 -0
  4743. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/operators.h +0 -0
  4744. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/options.h +0 -0
  4745. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/stl.h +0 -0
  4746. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
  4747. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tests/object.h +0 -0
  4748. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
  4749. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tests/test_exceptions.h +0 -0
  4750. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tools/FindCatch.cmake +0 -0
  4751. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tools/FindEigen3.cmake +0 -0
  4752. {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tools/JoinPaths.cmake +0 -0
  4753. {polyscope-2.3.0 → polyscope-2.5.0}/src/cpp/camera_view.cpp +0 -0
  4754. {polyscope-2.3.0 → polyscope-2.5.0}/src/cpp/floating_quantities.cpp +0 -0
  4755. {polyscope-2.3.0 → polyscope-2.5.0}/src/cpp/implicit_helpers.cpp +0 -0
  4756. {polyscope-2.3.0 → polyscope-2.5.0}/src/cpp/managed_buffer.cpp +0 -0
  4757. {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/camera_view.py +0 -0
  4758. {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/floating_quantities.py +0 -0
  4759. {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/global_floating_quantity_structure.py +0 -0
  4760. {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/imgui/__init__.py +0 -0
  4761. {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/implicit_helpers.py +0 -0
  4762. {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope_bindings/imgui.pyi +0 -0
@@ -0,0 +1,21 @@
1
+ [tool.cibuildwheel]
2
+ skip = "cp36-*" # scikit-build-core requires >=3.7
3
+ build-verbosity = 3
4
+
5
+ [tool.cibuildwheel.linux]
6
+ before-all = [
7
+ "yum remove -y cmake",
8
+ "yum install -y libX11-devel libXcursor-devel libXrandr-devel libXinerama-devel mesa-libGL-devel mesa-libGL libXi-devel freeglut-devel mesa-libEGL-devel"
9
+ ]
10
+ # Tell auditwheel _not_ to bundle libEGL, as it is platform/driver specific won't work (segfaults). We need to use the system libEGL.
11
+ # Fortunately almost all linux systems should have this, but might cause linking errors at runtime if not
12
+ # libGL is already treated similarly, but libEGL is not on the default auditwheel whitelist
13
+ repair-wheel-command = "auditwheel repair --exclude libEGL.so.1 -w {dest_dir} {wheel}"
14
+
15
+ [tool.cibuildwheel.environment.linux]
16
+ CMAKE_ARGS = "DPOLYSCOPE_BACKEND_OPENGL3_EGL=ON"
17
+
18
+ # musllinux builds on an Alpinx Linux image, need different package names
19
+ [[tool.cibuildwheel.overrides]]
20
+ select = "*-musllinux*"
21
+ before-all = "apk add libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev freeglut-dev mesa-dev mesa-gl mesa-egl"
@@ -0,0 +1,92 @@
1
+ name: Build and Publish
2
+
3
+ # NOTE: build logic is duplicated here and in test_build.yml
4
+
5
+ # Run on the main branch for commits only
6
+ on:
7
+ push:
8
+ branches:
9
+ - master
10
+
11
+ jobs:
12
+ build_wheels:
13
+
14
+ # only run if the most recent commit contains '[ci publish]'
15
+ if: "contains(github.event.head_commit.message, '[ci publish]')"
16
+
17
+ strategy:
18
+ matrix:
19
+ # macos-13 is an intel runner, macos-14+ is apple silicon
20
+ os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-latest]
21
+
22
+ name: Build wheels ${{ matrix.os }}
23
+ runs-on: ${{ matrix.os }}
24
+
25
+ steps:
26
+ - uses: actions/checkout@v4
27
+ with:
28
+ submodules: 'recursive'
29
+
30
+ - name: Package source distribution
31
+ # make sure this only happens on one of the runners, not repeated on all
32
+ if: matrix.os == 'ubuntu-latest'
33
+ run: |
34
+ python -m pip install build
35
+ python -m build --sdist
36
+
37
+ - name: Run cibuildwheel
38
+ uses: pypa/cibuildwheel@v2.23.2
39
+ with:
40
+ config-file: ".github/workflows/cibuildwheel_config.toml"
41
+
42
+ - name: Copy source distribution into wheelhouse
43
+ if: matrix.os == 'ubuntu-latest'
44
+ run: mv dist/*.tar.gz wheelhouse/
45
+
46
+ # Upload binaries to the github artifact store
47
+ - name: Upload wheels
48
+ uses: actions/upload-artifact@v4
49
+ with:
50
+ name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
51
+ path: |
52
+ ./wheelhouse/*.whl
53
+ ./wheelhouse/*.tar.gz
54
+ overwrite: true
55
+
56
+ # Push the resulting binaries to pypi on a tag starting with 'v'
57
+ upload_pypi:
58
+ name: Upload release to PyPI
59
+
60
+ # only run if the most recent commit contains '[ci publish]'
61
+ if: "contains(github.event.head_commit.message, '[ci publish]')"
62
+
63
+ needs: [build_wheels]
64
+ runs-on: ubuntu-latest
65
+ environment:
66
+ name: pypi
67
+ url: https://pypi.org/p/polyscope
68
+ permissions: # we authenticate via PyPI's 'trusted publisher' workflow, this permission is required
69
+ id-token: write
70
+ steps:
71
+ - name: Download built wheels artifact # downloads from the jobs storage from the previous step
72
+ uses: actions/download-artifact@v4.2.1
73
+ with:
74
+ # omitting the `name: ` field downloads all artifacts from this workflow
75
+ path: dist
76
+
77
+ - name: List downloaded files from artifact
78
+ run: ls -lR dist
79
+
80
+ # dist directory has subdirs from the different jobs, merge them into one directory and delete
81
+ # the empty leftover dirs
82
+ - name: Flatten directory
83
+ run: find dist -mindepth 2 -type f -exec mv -t dist {} + && find dist -type d -empty -delete
84
+
85
+ - name: List downloaded files from artifact after flatten
86
+ run: ls -lR dist
87
+
88
+ - name: Publish package to PyPI
89
+ uses: pypa/gh-action-pypi-publish@release/v1
90
+ # with:
91
+ # To test: repository_url: https://test.pypi.org/legacy/
92
+
@@ -0,0 +1,90 @@
1
+
2
+ name: Test Build
3
+
4
+ # NOTE: build logic is duplicated here and in publish.yml
5
+
6
+ # Run on the master branch commit push and PRs to master (note conditional below)
7
+ on:
8
+ push:
9
+ branches:
10
+ - master
11
+ pull_request:
12
+ branches:
13
+ - master
14
+
15
+ jobs:
16
+ build_wheels:
17
+
18
+ # Only run if the commit message contains '[ci build]'
19
+ if: "contains(toJSON(github.event.commits.*.message), '[ci build]') || contains(toJSON(github.event.pull_request.title), '[ci build]')"
20
+
21
+ strategy:
22
+ fail-fast: false
23
+ matrix:
24
+ # macos-13 is an intel runner, macos-14+ is apple silicon
25
+ os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-latest]
26
+
27
+ name: Build wheels ${{ matrix.os }}
28
+ runs-on: ${{ matrix.os }}
29
+
30
+ steps:
31
+ - uses: actions/checkout@v4
32
+ with:
33
+ submodules: 'recursive'
34
+
35
+ - name: Package source distribution
36
+ # make sure this only happens on one of the runners, not repeated on all
37
+ if: matrix.os == 'ubuntu-latest'
38
+ run: |
39
+ python -m pip install build
40
+ python -m build --sdist
41
+
42
+ - name: Run cibuildwheel
43
+ uses: pypa/cibuildwheel@v2.23.2
44
+ with:
45
+ config-file: ".github/workflows/cibuildwheel_config.toml"
46
+
47
+ # Upload binaries to the github artifact store
48
+ - name: Upload wheels
49
+ uses: actions/upload-artifact@v4
50
+ with:
51
+ name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
52
+ path: |
53
+ ./wheelhouse/*.whl
54
+ ./wheelhouse/*.tar.gz
55
+ overwrite: true
56
+
57
+ # Do all but the very last step of pushing the upload to pypi, to catch any problems
58
+ # in directory layout or multiply-generated wheels etc.
59
+ prep_upload:
60
+ name: Prep release upload
61
+
62
+ # Only run if the commit message contains '[ci build]'
63
+ if: "contains(toJSON(github.event.commits.*.message), '[ci build]') || contains(toJSON(github.event.pull_request.title), '[ci build]')"
64
+
65
+ needs: [build_wheels]
66
+ runs-on: ubuntu-latest
67
+
68
+ steps:
69
+ - name: Download built wheels artifact # downloads from the jobs storage from the previous step
70
+ uses: actions/download-artifact@v4.2.1
71
+ with:
72
+ # omitting the `name: ` field downloads all artifacts from this workflow
73
+ path: dist
74
+
75
+ - name: List downloaded files from artifact
76
+ run: ls -lR dist
77
+
78
+ # dist directory has subdirs from the different jobs, merge them into one directory and delete
79
+ # the empty leftover dirs
80
+ - name: Flatten directory
81
+ run: find dist -mindepth 2 -type f -exec mv -t dist {} + && find dist -type d -empty -delete
82
+
83
+ - name: List downloaded files from artifact after flatten
84
+ run: ls -lR dist
85
+
86
+ # This is where we would actually publish, if it were a real release
87
+ # - name: Publish package to PyPI
88
+ # uses: pypa/gh-action-pypi-publish@release/v1
89
+ # with:
90
+ # To test: repository_url: https://test.pypi.org/legacy/
@@ -0,0 +1,53 @@
1
+ name: Test Linux
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ build:
11
+ # Skip running if the commit message contains '[ci skip]'
12
+ if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
13
+ name: Build wheels - ${{ matrix.os }}-${{ matrix.arch }}
14
+ runs-on: ${{ matrix.os }}
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ include:
19
+ - os: ubuntu-latest
20
+ arch: x64
21
+ - os: ubuntu-24.04-arm
22
+ arch: aarch64
23
+
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ with:
27
+ submodules: 'recursive'
28
+
29
+ - uses: actions/setup-python@v5
30
+ name: Install Python
31
+ with:
32
+ python-version: '3.12'
33
+
34
+ - name: install packages
35
+ run: sudo apt-get update && sudo apt-get install -y xorg-dev libglu1-mesa-dev xpra xserver-xorg-video-dummy freeglut3-dev
36
+
37
+ - name: install python packages
38
+ run: python3 -m pip install numpy
39
+
40
+ - name: configure
41
+ run: |
42
+ mkdir build
43
+ cd build
44
+ cmake -DCMAKE_BUILD_TYPE=Debug -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)") -DPOLYSCOPE_BACKEND_OPENGL3_EGL=ON ..
45
+
46
+ - name: build
47
+ run: cd build && make
48
+
49
+ - name: run test backend mock
50
+ run: python3 test/polyscope_test.py -v
51
+
52
+ - name: run test backend EGL
53
+ run: python3 test/polyscope_test.py -v backend=openGL3_egl
@@ -0,0 +1,43 @@
1
+ name: Test macOS
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ build:
11
+ # Skip running if the commit message contains '[ci skip]'
12
+ if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
13
+ name: Build wheels - ${{ matrix.os }}-${{ matrix.arch }}
14
+ runs-on: ${{ matrix.os }}
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ include:
19
+ - os: macos-13
20
+ arch: x64
21
+ - os: macos-latest
22
+ arch: arm64
23
+ steps:
24
+ - uses: actions/checkout@v4
25
+ with:
26
+ submodules: 'recursive'
27
+
28
+ - uses: actions/setup-python@v5
29
+ name: Install Python
30
+ with:
31
+ python-version: '3.12'
32
+
33
+ - name: install python packages
34
+ run: python -m pip install numpy
35
+
36
+ - name: configure
37
+ run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DPOLYSCOPE_BACKEND_OPENGL3_GLFW=ON -DPOLYSCOPE_BACKEND_OPENGL_MOCK=ON ..
38
+
39
+ - name: build
40
+ run: cd build && make
41
+
42
+ - name: run test
43
+ run: python test/polyscope_test.py -v
@@ -0,0 +1,45 @@
1
+ name: Test Windows
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ build:
11
+ # Skip running if the commit message contains '[ci skip]'
12
+ if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
13
+ name: Build wheels - ${{ matrix.os }}-${{ matrix.arch }}
14
+ runs-on: ${{ matrix.os }}
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ include:
19
+ - os: windows-latest
20
+ arch: x64
21
+ # Windows ARM is not available as of Mar 2025, but coming soon: https://github.com/github/roadmap/issues/1098
22
+
23
+
24
+
25
+ steps:
26
+ - uses: actions/checkout@v4
27
+ with:
28
+ submodules: 'recursive'
29
+
30
+ - uses: actions/setup-python@v5
31
+ name: Install Python
32
+ with:
33
+ python-version: '3.12'
34
+
35
+ - name: install python packages
36
+ run: python -m pip install numpy
37
+
38
+ - name: configure
39
+ run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug ..
40
+
41
+ - name: build
42
+ run: cd build && cmake --build "."
43
+
44
+ - name: run test
45
+ run: python test/polyscope_test.py -v
@@ -0,0 +1,52 @@
1
+ compile_commands.json
2
+
3
+ # Build directories
4
+ build/
5
+ build_debug/
6
+ dist/
7
+ *.pyc
8
+ __pycache__/
9
+ .cache
10
+ *.egg-info
11
+
12
+ # Editor and OS things
13
+ imgui.ini
14
+ .polyscope.ini
15
+ .DS_Store
16
+ .vscode
17
+ *.swp
18
+ tags
19
+ *.blend1
20
+
21
+ # Prerequisites
22
+ *.d
23
+
24
+ # Compiled Object files
25
+ *.slo
26
+ *.lo
27
+ *.o
28
+ *.obj
29
+
30
+ # Precompiled Headers
31
+ *.gch
32
+ *.pch
33
+
34
+ # Compiled Dynamic libraries
35
+ *.so
36
+ *.dylib
37
+ *.dll
38
+
39
+ # Fortran module files
40
+ *.mod
41
+ *.smod
42
+
43
+ # Compiled Static libraries
44
+ *.lai
45
+ *.la
46
+ *.a
47
+ *.lib
48
+
49
+ # Executables
50
+ *.exe
51
+ *.out
52
+ *.app
@@ -0,0 +1,9 @@
1
+ [submodule "deps/pybind11"]
2
+ path = deps/pybind11
3
+ url = https://github.com/pybind/pybind11.git
4
+ [submodule "deps/polyscope"]
5
+ path = deps/polyscope
6
+ url = https://github.com/nmwsharp/polyscope.git
7
+ [submodule "deps/eigen"]
8
+ path = deps/eigen
9
+ url = https://gitlab.com/libeigen/eigen.git
@@ -0,0 +1,39 @@
1
+ cmake_minimum_required(VERSION 3.15.0) # minimum imposed by scikit-build-core
2
+ project(polyscope LANGUAGES CXX)
3
+
4
+ ## Gather dependencies
5
+
6
+ # Eigen
7
+ set(EIGEN3_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/deps/eigen/")
8
+
9
+ # Recurse in to pybind
10
+ set(PYBIND11_NEWPYTHON ON)
11
+ add_subdirectory(deps/pybind11)
12
+
13
+ # We need polyscope
14
+ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
15
+ add_subdirectory(deps/polyscope)
16
+
17
+ pybind11_add_module(polyscope_bindings
18
+ src/cpp/core.cpp
19
+ src/cpp/surface_mesh.cpp
20
+ src/cpp/point_cloud.cpp
21
+ src/cpp/curve_network.cpp
22
+ src/cpp/volume_mesh.cpp
23
+ src/cpp/volume_grid.cpp
24
+ src/cpp/camera_view.cpp
25
+ src/cpp/floating_quantities.cpp
26
+ src/cpp/implicit_helpers.cpp
27
+ src/cpp/managed_buffer.cpp
28
+ src/cpp/imgui.cpp
29
+ src/cpp/implot.cpp
30
+
31
+ src/cpp/utils.h
32
+ src/cpp/imgui_utils.h
33
+ )
34
+ set_target_properties(polyscope_bindings PROPERTIES CXX_VISIBILITY_PRESET "default")
35
+
36
+ target_include_directories(polyscope_bindings PUBLIC "${EIGEN3_INCLUDE_DIR}")
37
+ target_link_libraries(polyscope_bindings PRIVATE polyscope)
38
+
39
+ install(TARGETS polyscope_bindings LIBRARY DESTINATION .)
@@ -0,0 +1,84 @@
1
+ Metadata-Version: 2.2
2
+ Name: polyscope
3
+ Version: 2.5.0
4
+ Summary: Polyscope: A viewer and user interface for 3D data.
5
+ Author-Email: Nicholas Sharp <nmwsharp@gmail.com>
6
+ Maintainer-Email: Nicholas Sharp <nmwsharp@gmail.com>
7
+ License: MIT License
8
+
9
+ Copyright (c) 2017-2020 Nicholas Sharp and the Polyscope contributors
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+
29
+ Classifier: Development Status :: 5 - Production/Stable
30
+ Classifier: License :: OSI Approved :: MIT License
31
+ Classifier: Programming Language :: Python :: 3
32
+ Project-URL: Homepage, https://github.com/nmwsharp/polyscope
33
+ Project-URL: Documentation, https://polyscope.run
34
+ Project-URL: Bug Tracker, https://github.com/nmwsharp/polyscope/issues
35
+ Project-URL: Discussions, https://github.com/nmwsharp/polyscope/discussions
36
+ Requires-Python: >=3.7
37
+ Requires-Dist: numpy
38
+ Description-Content-Type: text/markdown
39
+
40
+ # polyscope-py
41
+ Python bindings for Polyscope. https://polyscope.run/py
42
+
43
+ [![Linux](https://github.com/nmwsharp/polyscope-py/workflows/Test%20Linux/badge.svg)](https://github.com/nmwsharp/polyscope-py/actions)
44
+ [![macOS](https://github.com/nmwsharp/polyscope-py/workflows/Test%20macOS/badge.svg)](https://github.com/nmwsharp/polyscope-py/actions)
45
+ [![Windows](https://github.com/nmwsharp/polyscope-py/workflows/Test%20Windows/badge.svg)](https://github.com/nmwsharp/polyscope-py/actions)
46
+ [![PyPI](https://img.shields.io/pypi/v/polyscope?style=plastic)](https://pypi.org/project/polyscope/)
47
+ [![Conda](https://img.shields.io/conda/v/conda-forge/polyscope)](https://anaconda.org/conda-forge/polyscope)
48
+
49
+ 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.
50
+
51
+ To contribute, check out the [instructions here](https://polyscope.run/about/contributing/).
52
+
53
+ ### Installation
54
+
55
+ ```
56
+ python -m pip install polyscope
57
+ ```
58
+
59
+ or
60
+
61
+ ```
62
+ conda install -c conda-forge polyscope
63
+ ```
64
+
65
+ polyscope-py should work out-of-the-box on any combination of Python 3.7-3.12 and Linux/macOS/Windows. Your graphics hardware must support OpenGL >= 3.3 core profile.
66
+
67
+ ## For developers
68
+
69
+ This repo is configured with CI on github actions.
70
+
71
+ - By default, all commits to the main branch build & run tests. Use `[ci skip]` to skip this.
72
+ - Tagging a commit with `[ci build]` causes it to also build all precompiled wheels on a matrix of platforms to ensure the build scripts succeed.
73
+ - Tagging a commit with `[ci publish]` causes it to build all precompiled wheels on a matrix of platforms AND upload them to pypi index
74
+
75
+ ### Deploy a new version
76
+
77
+ - Commit the desired version to the `master` branch. Use the `[ci build]` string in the commit message to trigger builds, which should take about an hour.
78
+ - 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.
79
+ - While you're waiting, update the docs, including the changelog.
80
+ - Update the version string in `setup.py` to the new version number. When you commit, include the string `[ci publish]`, which will kick of a publish job to build wheels again AND upload them to PyPI.
81
+ - If something goes wrong with the build & publish, you can manually retry by pushing any new commit with "[ci publish]" in the message.
82
+ - Create a github release. Tag the release commit with a tag like `v1.2.3`, matching the version in `setup.py`
83
+
84
+ - 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,45 @@
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.7-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 on a matrix of platforms to ensure the build scripts succeed.
34
+ - Tagging a commit with `[ci publish]` causes it to build all precompiled wheels on a matrix of platforms AND upload them to pypi index
35
+
36
+ ### Deploy a new version
37
+
38
+ - Commit the desired version to the `master` branch. Use the `[ci build]` string 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
+ - Update the version string in `setup.py` to the new version number. When you commit, include the string `[ci publish]`, which will kick of a publish job to build wheels again AND upload them to PyPI.
42
+ - If something goes wrong with the build & publish, you can manually retry by pushing any new commit with "[ci publish]" in the message.
43
+ - Create a github release. Tag the release commit with a tag like `v1.2.3`, matching the version in `setup.py`
44
+
45
+ - 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,37 @@
1
+ qrc_*cxx
2
+ *.orig
3
+ *.pyc
4
+ *.diff
5
+ diff
6
+ *.save
7
+ save
8
+ *.old
9
+ *.gmo
10
+ *.qm
11
+ core
12
+ core.*
13
+ *.bak
14
+ *~
15
+ *build*
16
+ *.moc.*
17
+ *.moc
18
+ ui_*
19
+ CMakeCache.txt
20
+ tags
21
+ .*.swp
22
+ activity.png
23
+ *.out
24
+ *.php*
25
+ *.log
26
+ *.orig
27
+ *.rej
28
+ log
29
+ patch
30
+ *.patch
31
+ a
32
+ a.*
33
+ lapack/testing
34
+ lapack/reference
35
+ .*project
36
+ .settings
37
+ Makefile
@@ -0,0 +1,11 @@
1
+ [patterns]
2
+ *.sh = LF
3
+ *.MINPACK = CRLF
4
+ scripts/*.in = LF
5
+ debug/msvc/*.dat = CRLF
6
+ debug/msvc/*.natvis = CRLF
7
+ unsupported/test/mpreal/*.* = CRLF
8
+ ** = native
9
+
10
+ [repository]
11
+ native = LF