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.
- polyscope-2.5.0/.github/workflows/cibuildwheel_config.toml +21 -0
- polyscope-2.5.0/.github/workflows/publish.yml +92 -0
- polyscope-2.5.0/.github/workflows/test_build.yml +90 -0
- polyscope-2.5.0/.github/workflows/test_linux.yml +53 -0
- polyscope-2.5.0/.github/workflows/test_macos.yml +43 -0
- polyscope-2.5.0/.github/workflows/test_windows.yml +45 -0
- polyscope-2.5.0/.gitignore +52 -0
- polyscope-2.5.0/.gitmodules +9 -0
- polyscope-2.5.0/CMakeLists.txt +39 -0
- polyscope-2.5.0/PKG-INFO +84 -0
- polyscope-2.5.0/README.md +45 -0
- polyscope-2.5.0/deps/eigen/.gitignore +37 -0
- polyscope-2.5.0/deps/eigen/.hgeol +11 -0
- polyscope-2.5.0/deps/eigen/CMakeLists.txt +653 -0
- polyscope-2.5.0/deps/eigen/CTestConfig.cmake +17 -0
- polyscope-2.5.0/deps/eigen/CTestCustom.cmake.in +4 -0
- polyscope-2.5.0/deps/eigen/INSTALL +35 -0
- polyscope-2.5.0/deps/eigen/bench/BenchSparseUtil.h +149 -0
- polyscope-2.5.0/deps/eigen/bench/BenchTimer.h +199 -0
- polyscope-2.5.0/deps/eigen/bench/BenchUtil.h +92 -0
- polyscope-2.5.0/deps/eigen/bench/README.txt +55 -0
- polyscope-2.5.0/deps/eigen/bench/analyze-blocking-sizes.cpp +876 -0
- polyscope-2.5.0/deps/eigen/bench/basicbench.cxxlist +28 -0
- polyscope-2.5.0/deps/eigen/bench/basicbenchmark.cpp +35 -0
- polyscope-2.5.0/deps/eigen/bench/basicbenchmark.h +63 -0
- polyscope-2.5.0/deps/eigen/bench/benchBlasGemm.cpp +219 -0
- polyscope-2.5.0/deps/eigen/bench/benchCholesky.cpp +142 -0
- polyscope-2.5.0/deps/eigen/bench/benchEigenSolver.cpp +212 -0
- polyscope-2.5.0/deps/eigen/bench/benchFFT.cpp +115 -0
- polyscope-2.5.0/deps/eigen/bench/benchGeometry.cpp +134 -0
- polyscope-2.5.0/deps/eigen/bench/benchVecAdd.cpp +135 -0
- polyscope-2.5.0/deps/eigen/bench/bench_gemm.cpp +375 -0
- polyscope-2.5.0/deps/eigen/bench/bench_multi_compilers.sh +28 -0
- polyscope-2.5.0/deps/eigen/bench/bench_norm.cpp +360 -0
- polyscope-2.5.0/deps/eigen/bench/bench_reverse.cpp +84 -0
- polyscope-2.5.0/deps/eigen/bench/bench_sum.cpp +18 -0
- polyscope-2.5.0/deps/eigen/bench/bench_unrolling +12 -0
- polyscope-2.5.0/deps/eigen/bench/benchmark-blocking-sizes.cpp +677 -0
- polyscope-2.5.0/deps/eigen/bench/benchmark.cpp +39 -0
- polyscope-2.5.0/deps/eigen/bench/benchmarkSlice.cpp +38 -0
- polyscope-2.5.0/deps/eigen/bench/benchmarkX.cpp +36 -0
- polyscope-2.5.0/deps/eigen/bench/benchmarkXcwise.cpp +35 -0
- polyscope-2.5.0/deps/eigen/bench/benchmark_suite +18 -0
- polyscope-2.5.0/deps/eigen/bench/btl/CMakeLists.txt +107 -0
- polyscope-2.5.0/deps/eigen/bench/btl/COPYING +340 -0
- polyscope-2.5.0/deps/eigen/bench/btl/README +154 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_aat_product.hh +145 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_ata_product.hh +145 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_atv_product.hh +134 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_axpby.hh +127 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_axpy.hh +139 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_cholesky.hh +128 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_ger.hh +128 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_hessenberg.hh +233 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_lu_decomp.hh +124 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_lu_solve.hh +136 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_matrix_matrix_product.hh +150 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_matrix_matrix_product_bis.hh +152 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_matrix_vector_product.hh +153 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_partial_lu.hh +125 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_rot.hh +116 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_symv.hh +139 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_syr2.hh +133 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_trisolve.hh +137 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_trisolve_matrix.hh +165 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/action_trmm.hh +165 -0
- polyscope-2.5.0/deps/eigen/bench/btl/actions/basic_actions.hh +21 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindACML.cmake +51 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindATLAS.cmake +31 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindBLAZE.cmake +31 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindBlitz.cmake +40 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindCBLAS.cmake +35 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindGMM.cmake +17 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindMKL.cmake +65 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindMTL4.cmake +31 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindOPENBLAS.cmake +17 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindPackageHandleStandardArgs.cmake +60 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/FindTvmet.cmake +32 -0
- polyscope-2.5.0/deps/eigen/bench/btl/cmake/MacroOptionalAddSubdirectory.cmake +31 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/CMakeLists.txt +32 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/action_settings.txt +19 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/gnuplot_common_settings.hh +87 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/go_mean +58 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/mean.cxx +182 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/mk_gnuplot_script.sh +68 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/mk_mean_script.sh +52 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/mk_new_gnuplot.sh +54 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/perlib_plot_settings.txt +16 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/regularize.cxx +131 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/smooth.cxx +198 -0
- polyscope-2.5.0/deps/eigen/bench/btl/data/smooth_all.sh +68 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/bench.hh +168 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/bench_parameter.hh +53 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/btl.hh +242 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/init/init_function.hh +54 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/init/init_matrix.hh +64 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/init/init_vector.hh +37 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/static/bench_static.hh +80 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/static/intel_bench_fixed_size.hh +66 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/static/static_size_generator.hh +57 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/STL_perf_analyzer.hh +82 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/STL_timer.hh +78 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/mixed_perf_analyzer.hh +73 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/portable_perf_analyzer.hh +103 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/portable_perf_analyzer_old.hh +134 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/portable_timer.hh +187 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/x86_perf_analyzer.hh +108 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/timers/x86_timer.hh +246 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/utils/size_lin_log.hh +70 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/utils/size_log.hh +54 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/utils/utilities.h +90 -0
- polyscope-2.5.0/deps/eigen/bench/btl/generic_bench/utils/xy_file.hh +75 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/CMakeLists.txt +47 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/blas.h +675 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/blas_interface.hh +83 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/blas_interface_impl.hh +147 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/c_interface_base.h +73 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/BLAS/main.cpp +73 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/STL/CMakeLists.txt +2 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/STL/STL_interface.hh +244 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/STL/main.cpp +42 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blaze/CMakeLists.txt +13 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blaze/blaze_interface.hh +141 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blaze/main.cpp +40 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/CMakeLists.txt +17 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/blitz_LU_solve_interface.hh +192 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/blitz_interface.hh +147 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/btl_blitz.cpp +51 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/btl_tiny_blitz.cpp +38 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/blitz/tiny_blitz_interface.hh +106 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/CMakeLists.txt +19 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/btl_tiny_eigen2.cpp +46 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/eigen2_interface.hh +168 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/main_adv.cpp +44 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/main_linear.cpp +34 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/main_matmat.cpp +35 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen2/main_vecmat.cpp +36 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/CMakeLists.txt +65 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/btl_tiny_eigen3.cpp +46 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/eigen3_interface.hh +242 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/main_adv.cpp +44 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/main_linear.cpp +35 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/main_matmat.cpp +35 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/eigen3/main_vecmat.cpp +36 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/gmm/CMakeLists.txt +6 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/gmm/gmm_LU_solve_interface.hh +192 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/gmm/gmm_interface.hh +144 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/gmm/main.cpp +51 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/.kdbgrc.main +12 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/CMakeLists.txt +6 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/main.cpp +46 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/mtl4_LU_solve_interface.hh +192 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/mtl4/mtl4_interface.hh +144 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/CMakeLists.txt +44 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/main_linear.cpp +23 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/main_matmat.cpp +21 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/main_vecmat.cpp +21 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/tensors/tensor_interface.hh +105 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/tvmet/CMakeLists.txt +6 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/tvmet/main.cpp +40 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/tvmet/tvmet_interface.hh +104 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/ublas/CMakeLists.txt +7 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/ublas/main.cpp +44 -0
- polyscope-2.5.0/deps/eigen/bench/btl/libs/ublas/ublas_interface.hh +141 -0
- polyscope-2.5.0/deps/eigen/bench/check_cache_queries.cpp +101 -0
- polyscope-2.5.0/deps/eigen/bench/dense_solvers.cpp +186 -0
- polyscope-2.5.0/deps/eigen/bench/eig33.cpp +195 -0
- polyscope-2.5.0/deps/eigen/bench/geometry.cpp +126 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/changesets.txt +95 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemm.cpp +12 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemm_common.h +67 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemm_settings.txt +15 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemm_square_settings.txt +11 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemv.cpp +12 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemv_common.h +69 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemv_settings.txt +11 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemv_square_settings.txt +13 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/gemvt.cpp +12 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/lazy_gemm.cpp +101 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/lazy_gemm_settings.txt +15 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/llt.cpp +15 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/make_plot.sh +112 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/chart_footer.html +41 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/chart_header.html +45 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/footer.html +3 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/header.html +42 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/s1.js +1 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/resources/s2.js +1 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/run.sh +183 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/runall.sh +72 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/trmv_lo.cpp +12 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/trmv_lot.cpp +12 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/trmv_up.cpp +12 -0
- polyscope-2.5.0/deps/eigen/bench/perf_monitoring/trmv_upt.cpp +12 -0
- polyscope-2.5.0/deps/eigen/bench/product_threshold.cpp +143 -0
- polyscope-2.5.0/deps/eigen/bench/quat_slerp.cpp +247 -0
- polyscope-2.5.0/deps/eigen/bench/quatmul.cpp +47 -0
- polyscope-2.5.0/deps/eigen/bench/sparse_cholesky.cpp +216 -0
- polyscope-2.5.0/deps/eigen/bench/sparse_dense_product.cpp +187 -0
- polyscope-2.5.0/deps/eigen/bench/sparse_lu.cpp +132 -0
- polyscope-2.5.0/deps/eigen/bench/sparse_product.cpp +323 -0
- polyscope-2.5.0/deps/eigen/bench/sparse_randomsetter.cpp +125 -0
- polyscope-2.5.0/deps/eigen/bench/sparse_setter.cpp +485 -0
- polyscope-2.5.0/deps/eigen/bench/sparse_transpose.cpp +104 -0
- polyscope-2.5.0/deps/eigen/bench/sparse_trisolver.cpp +220 -0
- polyscope-2.5.0/deps/eigen/bench/spbench/CMakeLists.txt +85 -0
- polyscope-2.5.0/deps/eigen/bench/spbench/sp_solver.cpp +125 -0
- polyscope-2.5.0/deps/eigen/bench/spbench/spbench.dtd +31 -0
- polyscope-2.5.0/deps/eigen/bench/spbench/spbenchsolver.cpp +87 -0
- polyscope-2.5.0/deps/eigen/bench/spbench/spbenchsolver.h +554 -0
- polyscope-2.5.0/deps/eigen/bench/spbench/spbenchstyle.h +95 -0
- polyscope-2.5.0/deps/eigen/bench/spbench/test_sparseLU.cpp +93 -0
- polyscope-2.5.0/deps/eigen/bench/spmv.cpp +233 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/README +20 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/benchmark.h +49 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/benchmark_main.cc +237 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/contraction_benchmarks_cpu.cc +39 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/eigen_sycl_bench.sh +30 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/eigen_sycl_bench_contract.sh +7 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks.h +597 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks_cpu.cc +168 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks_fp16_gpu.cu +77 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks_gpu.cu +75 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/tensor_benchmarks_sycl.cc +140 -0
- polyscope-2.5.0/deps/eigen/bench/tensors/tensor_contract_sycl_bench.cc +325 -0
- polyscope-2.5.0/deps/eigen/bench/vdw_new.cpp +56 -0
- polyscope-2.5.0/deps/eigen/blas/BandTriangularSolver.h +97 -0
- polyscope-2.5.0/deps/eigen/blas/CMakeLists.txt +57 -0
- polyscope-2.5.0/deps/eigen/blas/GeneralRank1Update.h +44 -0
- polyscope-2.5.0/deps/eigen/blas/PackedSelfadjointProduct.h +53 -0
- polyscope-2.5.0/deps/eigen/blas/PackedTriangularMatrixVector.h +79 -0
- polyscope-2.5.0/deps/eigen/blas/PackedTriangularSolverVector.h +88 -0
- polyscope-2.5.0/deps/eigen/blas/README.txt +6 -0
- polyscope-2.5.0/deps/eigen/blas/Rank2Update.h +57 -0
- polyscope-2.5.0/deps/eigen/blas/common.h +175 -0
- polyscope-2.5.0/deps/eigen/blas/complex_double.cpp +20 -0
- polyscope-2.5.0/deps/eigen/blas/complex_single.cpp +20 -0
- polyscope-2.5.0/deps/eigen/blas/double.cpp +32 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/chbmv.c +487 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/chpmv.c +438 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/complexdots.c +84 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/ctbmv.c +647 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/d_cnjg.c +6 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/datatypes.h +24 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/drotm.c +215 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/drotmg.c +293 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/dsbmv.c +366 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/dspmv.c +316 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/dtbmv.c +428 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/lsame.c +117 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/r_cnjg.c +6 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/srotm.c +216 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/srotmg.c +295 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/ssbmv.c +368 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/sspmv.c +316 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/stbmv.c +428 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/zhbmv.c +488 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/zhpmv.c +438 -0
- polyscope-2.5.0/deps/eigen/blas/f2c/ztbmv.c +647 -0
- polyscope-2.5.0/deps/eigen/blas/fortran/complexdots.f +43 -0
- polyscope-2.5.0/deps/eigen/blas/level1_cplx_impl.h +155 -0
- polyscope-2.5.0/deps/eigen/blas/level1_impl.h +144 -0
- polyscope-2.5.0/deps/eigen/blas/level1_real_impl.h +122 -0
- polyscope-2.5.0/deps/eigen/blas/level2_cplx_impl.h +360 -0
- polyscope-2.5.0/deps/eigen/blas/level2_impl.h +553 -0
- polyscope-2.5.0/deps/eigen/blas/level2_real_impl.h +306 -0
- polyscope-2.5.0/deps/eigen/blas/level3_impl.h +702 -0
- polyscope-2.5.0/deps/eigen/blas/single.cpp +22 -0
- polyscope-2.5.0/deps/eigen/blas/testing/CMakeLists.txt +40 -0
- polyscope-2.5.0/deps/eigen/blas/testing/cblat1.f +724 -0
- polyscope-2.5.0/deps/eigen/blas/testing/cblat2.dat +35 -0
- polyscope-2.5.0/deps/eigen/blas/testing/cblat2.f +3279 -0
- polyscope-2.5.0/deps/eigen/blas/testing/cblat3.dat +23 -0
- polyscope-2.5.0/deps/eigen/blas/testing/cblat3.f +3492 -0
- polyscope-2.5.0/deps/eigen/blas/testing/dblat1.f +1065 -0
- polyscope-2.5.0/deps/eigen/blas/testing/dblat2.dat +34 -0
- polyscope-2.5.0/deps/eigen/blas/testing/dblat2.f +3176 -0
- polyscope-2.5.0/deps/eigen/blas/testing/dblat3.dat +20 -0
- polyscope-2.5.0/deps/eigen/blas/testing/dblat3.f +2873 -0
- polyscope-2.5.0/deps/eigen/blas/testing/runblastest.sh +45 -0
- polyscope-2.5.0/deps/eigen/blas/testing/sblat1.f +1021 -0
- polyscope-2.5.0/deps/eigen/blas/testing/sblat2.dat +34 -0
- polyscope-2.5.0/deps/eigen/blas/testing/sblat2.f +3176 -0
- polyscope-2.5.0/deps/eigen/blas/testing/sblat3.dat +20 -0
- polyscope-2.5.0/deps/eigen/blas/testing/sblat3.f +2873 -0
- polyscope-2.5.0/deps/eigen/blas/testing/zblat1.f +724 -0
- polyscope-2.5.0/deps/eigen/blas/testing/zblat2.dat +35 -0
- polyscope-2.5.0/deps/eigen/blas/testing/zblat2.f +3287 -0
- polyscope-2.5.0/deps/eigen/blas/testing/zblat3.dat +23 -0
- polyscope-2.5.0/deps/eigen/blas/testing/zblat3.f +3502 -0
- polyscope-2.5.0/deps/eigen/blas/xerbla.cpp +23 -0
- polyscope-2.5.0/deps/eigen/cmake/Eigen3Config.cmake.in +23 -0
- polyscope-2.5.0/deps/eigen/cmake/Eigen3ConfigLegacy.cmake.in +30 -0
- polyscope-2.5.0/deps/eigen/cmake/EigenConfigureTesting.cmake +58 -0
- polyscope-2.5.0/deps/eigen/cmake/EigenDetermineOSVersion.cmake +46 -0
- polyscope-2.5.0/deps/eigen/cmake/EigenDetermineVSServicePack.cmake +41 -0
- polyscope-2.5.0/deps/eigen/cmake/EigenTesting.cmake +638 -0
- polyscope-2.5.0/deps/eigen/cmake/EigenUninstall.cmake +40 -0
- polyscope-2.5.0/deps/eigen/cmake/FindAdolc.cmake +20 -0
- polyscope-2.5.0/deps/eigen/cmake/FindBLAS.cmake +1406 -0
- polyscope-2.5.0/deps/eigen/cmake/FindBLASEXT.cmake +380 -0
- polyscope-2.5.0/deps/eigen/cmake/FindCholmod.cmake +89 -0
- polyscope-2.5.0/deps/eigen/cmake/FindComputeCpp.cmake +443 -0
- polyscope-2.5.0/deps/eigen/cmake/FindEigen2.cmake +80 -0
- polyscope-2.5.0/deps/eigen/cmake/FindEigen3.cmake +107 -0
- polyscope-2.5.0/deps/eigen/cmake/FindFFTW.cmake +119 -0
- polyscope-2.5.0/deps/eigen/cmake/FindGLEW.cmake +105 -0
- polyscope-2.5.0/deps/eigen/cmake/FindGMP.cmake +21 -0
- polyscope-2.5.0/deps/eigen/cmake/FindGSL.cmake +170 -0
- polyscope-2.5.0/deps/eigen/cmake/FindGoogleHash.cmake +23 -0
- polyscope-2.5.0/deps/eigen/cmake/FindHWLOC.cmake +331 -0
- polyscope-2.5.0/deps/eigen/cmake/FindKLU.cmake +48 -0
- polyscope-2.5.0/deps/eigen/cmake/FindLAPACK.cmake +273 -0
- polyscope-2.5.0/deps/eigen/cmake/FindMPFR.cmake +83 -0
- polyscope-2.5.0/deps/eigen/cmake/FindMetis.cmake +264 -0
- polyscope-2.5.0/deps/eigen/cmake/FindPTSCOTCH.cmake +423 -0
- polyscope-2.5.0/deps/eigen/cmake/FindPastix.cmake +704 -0
- polyscope-2.5.0/deps/eigen/cmake/FindSPQR.cmake +41 -0
- polyscope-2.5.0/deps/eigen/cmake/FindScotch.cmake +369 -0
- polyscope-2.5.0/deps/eigen/cmake/FindStandardMathLibrary.cmake +64 -0
- polyscope-2.5.0/deps/eigen/cmake/FindSuperLU.cmake +97 -0
- polyscope-2.5.0/deps/eigen/cmake/FindTriSYCL.cmake +152 -0
- polyscope-2.5.0/deps/eigen/cmake/FindUmfpack.cmake +53 -0
- polyscope-2.5.0/deps/eigen/cmake/RegexUtils.cmake +19 -0
- polyscope-2.5.0/deps/eigen/cmake/UseEigen3.cmake +6 -0
- polyscope-2.5.0/deps/eigen/cmake/language_support.cmake +67 -0
- polyscope-2.5.0/deps/eigen/debug/gdb/__init__.py +1 -0
- polyscope-2.5.0/deps/eigen/debug/gdb/printers.py +314 -0
- polyscope-2.5.0/deps/eigen/debug/msvc/eigen.natvis +235 -0
- polyscope-2.5.0/deps/eigen/debug/msvc/eigen_autoexp_part.dat +295 -0
- polyscope-2.5.0/deps/eigen/demos/CMakeLists.txt +13 -0
- polyscope-2.5.0/deps/eigen/demos/mandelbrot/CMakeLists.txt +21 -0
- polyscope-2.5.0/deps/eigen/demos/mandelbrot/README +10 -0
- polyscope-2.5.0/deps/eigen/demos/mandelbrot/mandelbrot.cpp +213 -0
- polyscope-2.5.0/deps/eigen/demos/mandelbrot/mandelbrot.h +71 -0
- polyscope-2.5.0/deps/eigen/demos/mix_eigen_and_c/README +9 -0
- polyscope-2.5.0/deps/eigen/demos/mix_eigen_and_c/binary_library.cpp +185 -0
- polyscope-2.5.0/deps/eigen/demos/mix_eigen_and_c/binary_library.h +71 -0
- polyscope-2.5.0/deps/eigen/demos/mix_eigen_and_c/example.c +65 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/CMakeLists.txt +28 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/README +13 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/camera.cpp +264 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/camera.h +118 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/gpuhelper.cpp +126 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/gpuhelper.h +207 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/icosphere.cpp +120 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/icosphere.h +30 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/quaternion_demo.cpp +656 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/quaternion_demo.h +114 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/trackball.cpp +59 -0
- polyscope-2.5.0/deps/eigen/demos/opengl/trackball.h +42 -0
- polyscope-2.5.0/deps/eigen/doc/AsciiQuickReference.txt +226 -0
- polyscope-2.5.0/deps/eigen/doc/B01_Experimental.dox +52 -0
- polyscope-2.5.0/deps/eigen/doc/CMakeLists.txt +115 -0
- polyscope-2.5.0/deps/eigen/doc/ClassHierarchy.dox +129 -0
- polyscope-2.5.0/deps/eigen/doc/CoeffwiseMathFunctionsTable.dox +586 -0
- polyscope-2.5.0/deps/eigen/doc/CustomizingEigen_CustomScalar.dox +120 -0
- polyscope-2.5.0/deps/eigen/doc/CustomizingEigen_InheritingMatrix.dox +34 -0
- polyscope-2.5.0/deps/eigen/doc/CustomizingEigen_NullaryExpr.dox +86 -0
- polyscope-2.5.0/deps/eigen/doc/CustomizingEigen_Plugins.dox +69 -0
- polyscope-2.5.0/deps/eigen/doc/DenseDecompositionBenchmark.dox +42 -0
- polyscope-2.5.0/deps/eigen/doc/Doxyfile.in +1907 -0
- polyscope-2.5.0/deps/eigen/doc/Eigen_Silly_Professor_64x64.png +0 -0
- polyscope-2.5.0/deps/eigen/doc/FixedSizeVectorizable.dox +38 -0
- polyscope-2.5.0/deps/eigen/doc/FunctionsTakingEigenTypes.dox +217 -0
- polyscope-2.5.0/deps/eigen/doc/HiPerformance.dox +128 -0
- polyscope-2.5.0/deps/eigen/doc/InplaceDecomposition.dox +115 -0
- polyscope-2.5.0/deps/eigen/doc/InsideEigenExample.dox +500 -0
- polyscope-2.5.0/deps/eigen/doc/LeastSquares.dox +70 -0
- polyscope-2.5.0/deps/eigen/doc/Manual.dox +192 -0
- polyscope-2.5.0/deps/eigen/doc/MatrixfreeSolverExample.dox +20 -0
- polyscope-2.5.0/deps/eigen/doc/NewExpressionType.dox +143 -0
- polyscope-2.5.0/deps/eigen/doc/Overview.dox +28 -0
- polyscope-2.5.0/deps/eigen/doc/PassingByValue.dox +40 -0
- polyscope-2.5.0/deps/eigen/doc/Pitfalls.dox +128 -0
- polyscope-2.5.0/deps/eigen/doc/PreprocessorDirectives.dox +177 -0
- polyscope-2.5.0/deps/eigen/doc/QuickReference.dox +804 -0
- polyscope-2.5.0/deps/eigen/doc/QuickStartGuide.dox +100 -0
- polyscope-2.5.0/deps/eigen/doc/SparseLinearSystems.dox +232 -0
- polyscope-2.5.0/deps/eigen/doc/SparseQuickReference.dox +272 -0
- polyscope-2.5.0/deps/eigen/doc/StlContainers.dox +73 -0
- polyscope-2.5.0/deps/eigen/doc/StorageOrders.dox +86 -0
- polyscope-2.5.0/deps/eigen/doc/StructHavingEigenMembers.dox +203 -0
- polyscope-2.5.0/deps/eigen/doc/TemplateKeyword.dox +133 -0
- polyscope-2.5.0/deps/eigen/doc/TopicAliasing.dox +237 -0
- polyscope-2.5.0/deps/eigen/doc/TopicAssertions.dox +108 -0
- polyscope-2.5.0/deps/eigen/doc/TopicCMakeGuide.dox +56 -0
- polyscope-2.5.0/deps/eigen/doc/TopicEigenExpressionTemplates.dox +12 -0
- polyscope-2.5.0/deps/eigen/doc/TopicLazyEvaluation.dox +97 -0
- polyscope-2.5.0/deps/eigen/doc/TopicLinearAlgebraDecompositions.dox +275 -0
- polyscope-2.5.0/deps/eigen/doc/TopicMultithreading.dox +66 -0
- polyscope-2.5.0/deps/eigen/doc/TopicResizing.dox +11 -0
- polyscope-2.5.0/deps/eigen/doc/TopicScalarTypes.dox +12 -0
- polyscope-2.5.0/deps/eigen/doc/TopicVectorization.dox +9 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialAdvancedInitialization.dox +162 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialArrayClass.dox +192 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialBlockOperations.dox +228 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialGeometry.dox +242 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialLinearAlgebra.dox +292 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialMapClass.dox +86 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialMatrixArithmetic.dox +214 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialMatrixClass.dox +293 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialReductionsVisitorsBroadcasting.dox +266 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialReshape.dox +82 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialSTL.dox +66 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialSlicingIndexing.dox +244 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialSparse.dox +365 -0
- polyscope-2.5.0/deps/eigen/doc/TutorialSparse_example_details.dox +4 -0
- polyscope-2.5.0/deps/eigen/doc/UnalignedArrayAssert.dox +133 -0
- polyscope-2.5.0/deps/eigen/doc/UsingBlasLapackBackends.dox +133 -0
- polyscope-2.5.0/deps/eigen/doc/UsingIntelMKL.dox +113 -0
- polyscope-2.5.0/deps/eigen/doc/UsingNVCC.dox +30 -0
- polyscope-2.5.0/deps/eigen/doc/WrongStackAlignment.dox +56 -0
- polyscope-2.5.0/deps/eigen/doc/eigen_navtree_hacks.js +246 -0
- polyscope-2.5.0/deps/eigen/doc/eigendoxy.css +235 -0
- polyscope-2.5.0/deps/eigen/doc/eigendoxy_footer.html.in +40 -0
- polyscope-2.5.0/deps/eigen/doc/eigendoxy_header.html.in +59 -0
- polyscope-2.5.0/deps/eigen/doc/eigendoxy_layout.xml.in +178 -0
- polyscope-2.5.0/deps/eigen/doc/eigendoxy_tabs.css +59 -0
- polyscope-2.5.0/deps/eigen/doc/examples/.krazy +2 -0
- polyscope-2.5.0/deps/eigen/doc/examples/CMakeLists.txt +20 -0
- polyscope-2.5.0/deps/eigen/doc/examples/CustomizingEigen_Inheritance.cpp +30 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Cwise_erf.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Cwise_erfc.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Cwise_lgamma.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/examples/DenseBase_middleCols_int.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/DenseBase_middleRows_int.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/DenseBase_template_int_middleCols.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/DenseBase_template_int_middleRows.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/QuickStart_example.cpp +14 -0
- polyscope-2.5.0/deps/eigen/doc/examples/QuickStart_example2_dynamic.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/QuickStart_example2_fixed.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TemplateKeyword_flexible.cpp +22 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TemplateKeyword_simple.cpp +20 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialInplaceLU.cpp +61 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgComputeTwice.cpp +23 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgExComputeSolveError.cpp +14 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgExSolveColPivHouseholderQR.cpp +17 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgExSolveLDLT.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgInverseDeterminant.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgRankRevealing.cpp +20 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgSVDSolve.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgSelfAdjointEigenSolver.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/examples/TutorialLinAlgSetThreshold.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_accessors.cpp +24 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_addition.cpp +23 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_cwise_other.cpp +19 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_interop.cpp +22 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_interop_matrix.cpp +26 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ArrayClass_mult.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_colrow.cpp +17 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_corner.cpp +17 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_print_block.cpp +20 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_BlockOperations_vector.cpp +14 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_PartialLU_solve.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp +24 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp +21 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp +20 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp +13 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp +20 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp +21 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp +28 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp +13 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp +26 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_simple_example_dynamic_size.cpp +22 -0
- polyscope-2.5.0/deps/eigen/doc/examples/Tutorial_simple_example_fixed_size.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_Block.cpp +27 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_CwiseBinaryOp.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_CwiseUnaryOp.cpp +19 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_CwiseUnaryOp_ptrfun.cpp +20 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_FixedBlock.cpp +27 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_FixedReshaped.cpp +22 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_FixedVectorBlock.cpp +27 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_Reshaped.cpp +23 -0
- polyscope-2.5.0/deps/eigen/doc/examples/class_VectorBlock.cpp +27 -0
- polyscope-2.5.0/deps/eigen/doc/examples/function_taking_eigenbase.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/examples/function_taking_ref.cpp +19 -0
- polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp +11 -0
- polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.entry +5 -0
- polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.evaluator +32 -0
- polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.expression +20 -0
- polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.main +8 -0
- polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.preamble +4 -0
- polyscope-2.5.0/deps/eigen/doc/examples/make_circulant.cpp.traits +19 -0
- polyscope-2.5.0/deps/eigen/doc/examples/make_circulant2.cpp +52 -0
- polyscope-2.5.0/deps/eigen/doc/examples/matrixfree_cg.cpp +129 -0
- polyscope-2.5.0/deps/eigen/doc/examples/nullary_indexing.cpp +66 -0
- polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_add_sub.cpp +22 -0
- polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_dot_cross.cpp +15 -0
- polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_matrix_mul.cpp +19 -0
- polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_redux_basic.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/examples/tut_arithmetic_scalar_mul_div.cpp +17 -0
- polyscope-2.5.0/deps/eigen/doc/examples/tut_matrix_coefficient_accessors.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/examples/tut_matrix_resize.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/examples/tut_matrix_resize_fixed_size.cpp +12 -0
- polyscope-2.5.0/deps/eigen/doc/ftv2node.png +0 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/.krazy +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/AngleAxis_mimic_euler.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Array_initializer_list_23_cxx11.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Array_initializer_list_vector_cxx11.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Array_variadic_ctor_cxx11.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/BiCGSTAB_simple.cpp +11 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/BiCGSTAB_step_by_step.cpp +14 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/CMakeLists.txt +36 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/ColPivHouseholderQR_solve.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/ComplexEigenSolver_compute.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/ComplexEigenSolver_eigenvalues.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/ComplexEigenSolver_eigenvectors.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/ComplexSchur_compute.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/ComplexSchur_matrixT.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/ComplexSchur_matrixU.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_abs.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_abs2.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_acos.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_arg.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_array_power_array.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_asin.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_atan.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_boolean_and.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_boolean_not.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_boolean_or.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_boolean_xor.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_ceil.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_cos.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_cosh.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_cube.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_equal_equal.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_exp.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_floor.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_greater.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_greater_equal.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_inverse.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_isFinite.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_isInf.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_isNaN.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_less.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_less_equal.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_log.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_log10.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_max.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_min.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_minus.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_minus_equal.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_not_equal.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_plus.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_plus_equal.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_pow.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_product.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_quotient.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_rint.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_round.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_scalar_power_array.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_sign.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_sin.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_sinh.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_slash_equal.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_sqrt.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_square.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_tan.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_tanh.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Cwise_times_equal.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/DenseBase_LinSpaced.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/DenseBase_LinSpacedInt.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/DenseBase_LinSpaced_seq_deprecated.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/DenseBase_setLinSpaced.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/DirectionWise_hnormalized.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/DirectionWise_replicate.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/DirectionWise_replicate_int.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_EigenSolver_MatrixType.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_compute.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_eigenvalues.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_eigenvectors.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/EigenSolver_pseudoEigenvectors.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/FullPivHouseholderQR_solve.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/FullPivLU_image.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/FullPivLU_kernel.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/FullPivLU_solve.cpp +11 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/GeneralizedEigenSolver.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/HessenbergDecomposition_compute.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/HessenbergDecomposition_matrixH.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/HessenbergDecomposition_packedMatrix.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/HouseholderQR_householderQ.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/HouseholderQR_solve.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/HouseholderSequence_HouseholderSequence.cpp +31 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/IOFormat.cpp +14 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/JacobiSVD_basic.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Jacobi_makeGivens.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Jacobi_makeJacobi.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/LLT_example.cpp +12 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/LLT_solve.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/LeastSquaresNormalEquations.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/LeastSquaresQR.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Map_general_stride.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Map_inner_stride.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Map_outer_stride.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Map_placement_new.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Map_simple.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_adjoint.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_all.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_applyOnTheLeft.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_applyOnTheRight.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_array.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_array_const.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_asDiagonal.cpp +1 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_block_int_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_block_int_int_int_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_bottomLeftCorner_int_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_bottomRightCorner_int_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_bottomRows_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cast.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_col.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_colwise.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_colwise_iterator_cxx11.cpp +12 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_computeInverseAndDetWithCheck.cpp +13 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_computeInverseWithCheck.cpp +11 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseAbs.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseAbs2.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseEqual.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseInverse.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseMax.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseMin.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseNotEqual.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseProduct.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseQuotient.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseSign.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_diagonal.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_diagonal_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_diagonal_template_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_eigenvalues.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_end_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_eval.cpp +12 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_fixedBlock_int_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_hnormalized.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_homogeneous.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_identity.cpp +1 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_identity_int_int.cpp +1 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_inverse.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isDiagonal.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isIdentity.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isOnes.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isOrthogonal.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isUnitary.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_isZero.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_leftCols_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_noalias.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_ones.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_ones_int.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_ones_int_int.cpp +1 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_operatorNorm.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_prod.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_random.cpp +1 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_random_int.cpp +1 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_random_int_int.cpp +1 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_replicate.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_replicate_int_int.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reshaped_auto.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reshaped_fixed.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reshaped_int_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reshaped_to_vector.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_reverse.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_rightCols_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_row.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_rowwise.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_segment_int_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_select.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_selfadjointView.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_set.cpp +13 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_setIdentity.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_setOnes.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_setRandom.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_setZero.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_start_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_bottomRows.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_end.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_block_int_int_int_int.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner_int_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner_int_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner_int_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_leftCols.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_rightCols.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_segment.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_start.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_template_int_topRows.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_topLeftCorner_int_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_topRightCorner_int_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_topRows_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_transpose.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_triangularView.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_zero.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_zero_int.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/MatrixBase_zero_int_int.cpp +1 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_Map_stride.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_initializer_list_23_cxx11.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_initializer_list_vector_cxx11.cpp +2 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_resize_NoChange_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_resize_int.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_resize_int_NoChange.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_resize_int_int.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setConstant_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setConstant_int_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setIdentity_int_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setOnes_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setOnes_int_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setRandom_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setRandom_int_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setZero_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_setZero_int_int.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Matrix_variadic_ctor_cxx11.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/PartialPivLU_solve.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_count.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_maxCoeff.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_minCoeff.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_norm.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_prod.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_squaredNorm.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/PartialRedux_sum.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/RealQZ_compute.cpp +17 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/RealSchur_RealSchur_MatrixType.cpp +10 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/RealSchur_compute.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp +17 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType2.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_eigenvalues.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_eigenvectors.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_operatorInverseSqrt.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointEigenSolver_operatorSqrt.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointView_eigenvalues.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SelfAdjointView_operatorNorm.cpp +3 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Slicing_arrayexpr.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Slicing_custom_padding_cxx11.cpp +12 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Slicing_rawarray_cxx11.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Slicing_stdvector_cxx11.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/SparseMatrix_coeffs.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_block.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_block_correct.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_cwise.cpp +20 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult1.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult2.cpp +10 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult3.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult4.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicAliasing_mult5.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/TopicStorageOrders_example.cpp +18 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Triangular_solve.cpp +11 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_Tridiagonalization_MatrixType.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_compute.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_decomposeInPlace.cpp +10 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_diagonal.cpp +13 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_householderCoefficients.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tridiagonalization_packedMatrix.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_Block.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_CommaTemporary.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_Join.cpp +11 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_LinSpaced.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_ThreeWays.cpp +20 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_AdvancedInitialization_Zero.cpp +13 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_Map_rowmajor.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_Map_using.cpp +21 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_ReshapeMat2Mat.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_ReshapeMat2Vec.cpp +11 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_SlicingCol.cpp +11 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_SlicingVec.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_commainit_01.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_commainit_01b.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_commainit_02.cpp +7 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_range_for_loop_1d_cxx11.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_reshaped_vs_resize_2.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_matrix_inverse.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_multiple_rhs.cpp +10 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_reuse_decomposition.cpp +13 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_singular.cpp +9 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_triangular.cpp +8 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_solve_triangular_inplace.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_std_sort.cpp +4 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/VectorwiseOp_homogeneous.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/Vectorwise_reverse.cpp +10 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/class_FullPivLU.cpp +16 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/compile_snippet.cpp.in +23 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/tut_arithmetic_redux_minmax.cpp +12 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/tut_arithmetic_transpose_aliasing.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp +12 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/tut_arithmetic_transpose_inplace.cpp +6 -0
- polyscope-2.5.0/deps/eigen/doc/snippets/tut_matrix_assignment_resizing.cpp +5 -0
- polyscope-2.5.0/deps/eigen/doc/special_examples/CMakeLists.txt +34 -0
- polyscope-2.5.0/deps/eigen/doc/special_examples/Tutorial_sparse_example.cpp +38 -0
- polyscope-2.5.0/deps/eigen/doc/special_examples/Tutorial_sparse_example_details.cpp +44 -0
- polyscope-2.5.0/deps/eigen/doc/special_examples/random_cpp11.cpp +14 -0
- polyscope-2.5.0/deps/eigen/doc/tutorial.cpp +62 -0
- polyscope-2.5.0/deps/eigen/eigen3.pc.in +9 -0
- polyscope-2.5.0/deps/eigen/failtest/CMakeLists.txt +70 -0
- polyscope-2.5.0/deps/eigen/failtest/bdcsvd_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/block_nonconst_ctor_on_const_xpr_0.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/block_nonconst_ctor_on_const_xpr_1.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/block_nonconst_ctor_on_const_xpr_2.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/block_on_const_type_actually_const_0.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/block_on_const_type_actually_const_1.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/colpivqr_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/const_qualified_block_method_retval_0.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/const_qualified_block_method_retval_1.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/const_qualified_diagonal_method_retval.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/const_qualified_transpose_method_retval.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/cwiseunaryview_nonconst_ctor_on_const_xpr.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/cwiseunaryview_on_const_type_actually_const.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/diagonal_nonconst_ctor_on_const_xpr.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/diagonal_on_const_type_actually_const.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/eigensolver_cplx.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/eigensolver_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/failtest_sanity_check.cpp +5 -0
- polyscope-2.5.0/deps/eigen/failtest/fullpivlu_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/fullpivqr_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/initializer_list_1.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/initializer_list_2.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/jacobisvd_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/ldlt_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/llt_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_0.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_1.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_2.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_3.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/map_nonconst_ctor_on_const_ptr_4.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/map_on_const_type_actually_const_0.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/map_on_const_type_actually_const_1.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/partialpivlu_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/qr_int.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/ref_1.cpp +18 -0
- polyscope-2.5.0/deps/eigen/failtest/ref_2.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/ref_3.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/ref_4.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/ref_5.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/selfadjointview_nonconst_ctor_on_const_xpr.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/selfadjointview_on_const_type_actually_const.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/sparse_ref_1.cpp +18 -0
- polyscope-2.5.0/deps/eigen/failtest/sparse_ref_2.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/sparse_ref_3.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/sparse_ref_4.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/sparse_ref_5.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/sparse_storage_mismatch.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/swap_1.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/swap_2.cpp +14 -0
- polyscope-2.5.0/deps/eigen/failtest/ternary_1.cpp +13 -0
- polyscope-2.5.0/deps/eigen/failtest/ternary_2.cpp +13 -0
- polyscope-2.5.0/deps/eigen/failtest/transpose_nonconst_ctor_on_const_xpr.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/transpose_on_const_type_actually_const.cpp +16 -0
- polyscope-2.5.0/deps/eigen/failtest/triangularview_nonconst_ctor_on_const_xpr.cpp +15 -0
- polyscope-2.5.0/deps/eigen/failtest/triangularview_on_const_type_actually_const.cpp +16 -0
- polyscope-2.5.0/deps/eigen/lapack/CMakeLists.txt +451 -0
- polyscope-2.5.0/deps/eigen/lapack/cholesky.cpp +72 -0
- polyscope-2.5.0/deps/eigen/lapack/clacgv.f +116 -0
- polyscope-2.5.0/deps/eigen/lapack/cladiv.f +97 -0
- polyscope-2.5.0/deps/eigen/lapack/clarf.f +232 -0
- polyscope-2.5.0/deps/eigen/lapack/clarfb.f +771 -0
- polyscope-2.5.0/deps/eigen/lapack/clarfg.f +203 -0
- polyscope-2.5.0/deps/eigen/lapack/clarft.f +328 -0
- polyscope-2.5.0/deps/eigen/lapack/complex_double.cpp +18 -0
- polyscope-2.5.0/deps/eigen/lapack/complex_single.cpp +18 -0
- polyscope-2.5.0/deps/eigen/lapack/dladiv.f +128 -0
- polyscope-2.5.0/deps/eigen/lapack/dlamch.f +189 -0
- polyscope-2.5.0/deps/eigen/lapack/dlapy2.f +104 -0
- polyscope-2.5.0/deps/eigen/lapack/dlapy3.f +111 -0
- polyscope-2.5.0/deps/eigen/lapack/dlarf.f +227 -0
- polyscope-2.5.0/deps/eigen/lapack/dlarfb.f +762 -0
- polyscope-2.5.0/deps/eigen/lapack/dlarfg.f +196 -0
- polyscope-2.5.0/deps/eigen/lapack/dlarft.f +326 -0
- polyscope-2.5.0/deps/eigen/lapack/double.cpp +18 -0
- polyscope-2.5.0/deps/eigen/lapack/dsecnd_NONE.f +52 -0
- polyscope-2.5.0/deps/eigen/lapack/eigenvalues.cpp +62 -0
- polyscope-2.5.0/deps/eigen/lapack/ilaclc.f +118 -0
- polyscope-2.5.0/deps/eigen/lapack/ilaclr.f +121 -0
- polyscope-2.5.0/deps/eigen/lapack/iladlc.f +118 -0
- polyscope-2.5.0/deps/eigen/lapack/iladlr.f +121 -0
- polyscope-2.5.0/deps/eigen/lapack/ilaslc.f +118 -0
- polyscope-2.5.0/deps/eigen/lapack/ilaslr.f +121 -0
- polyscope-2.5.0/deps/eigen/lapack/ilazlc.f +118 -0
- polyscope-2.5.0/deps/eigen/lapack/ilazlr.f +121 -0
- polyscope-2.5.0/deps/eigen/lapack/lapack_common.h +29 -0
- polyscope-2.5.0/deps/eigen/lapack/lu.cpp +89 -0
- polyscope-2.5.0/deps/eigen/lapack/second_NONE.f +52 -0
- polyscope-2.5.0/deps/eigen/lapack/single.cpp +18 -0
- polyscope-2.5.0/deps/eigen/lapack/sladiv.f +128 -0
- polyscope-2.5.0/deps/eigen/lapack/slamch.f +192 -0
- polyscope-2.5.0/deps/eigen/lapack/slapy2.f +104 -0
- polyscope-2.5.0/deps/eigen/lapack/slapy3.f +111 -0
- polyscope-2.5.0/deps/eigen/lapack/slarf.f +227 -0
- polyscope-2.5.0/deps/eigen/lapack/slarfb.f +763 -0
- polyscope-2.5.0/deps/eigen/lapack/slarfg.f +196 -0
- polyscope-2.5.0/deps/eigen/lapack/slarft.f +326 -0
- polyscope-2.5.0/deps/eigen/lapack/svd.cpp +138 -0
- polyscope-2.5.0/deps/eigen/lapack/zlacgv.f +116 -0
- polyscope-2.5.0/deps/eigen/lapack/zladiv.f +97 -0
- polyscope-2.5.0/deps/eigen/lapack/zlarf.f +232 -0
- polyscope-2.5.0/deps/eigen/lapack/zlarfb.f +774 -0
- polyscope-2.5.0/deps/eigen/lapack/zlarfg.f +203 -0
- polyscope-2.5.0/deps/eigen/lapack/zlarft.f +327 -0
- polyscope-2.5.0/deps/eigen/scripts/CMakeLists.txt +6 -0
- polyscope-2.5.0/deps/eigen/scripts/cdashtesting.cmake.in +49 -0
- polyscope-2.5.0/deps/eigen/scripts/check.in +21 -0
- polyscope-2.5.0/deps/eigen/scripts/debug.in +3 -0
- polyscope-2.5.0/deps/eigen/scripts/eigen_gen_credits.cpp +232 -0
- polyscope-2.5.0/deps/eigen/scripts/eigen_gen_docs +24 -0
- polyscope-2.5.0/deps/eigen/scripts/eigen_gen_split_test_help.cmake +11 -0
- polyscope-2.5.0/deps/eigen/scripts/eigen_monitor_perf.sh +25 -0
- polyscope-2.5.0/deps/eigen/scripts/release.in +3 -0
- polyscope-2.5.0/deps/eigen/scripts/relicense.py +69 -0
- polyscope-2.5.0/deps/eigen/signature_of_eigen3_matrix_library +1 -0
- polyscope-2.5.0/deps/eigen/test/AnnoyingScalar.h +158 -0
- polyscope-2.5.0/deps/eigen/test/CMakeLists.txt +456 -0
- polyscope-2.5.0/deps/eigen/test/adjoint.cpp +219 -0
- polyscope-2.5.0/deps/eigen/test/array_cwise.cpp +571 -0
- polyscope-2.5.0/deps/eigen/test/array_for_matrix.cpp +307 -0
- polyscope-2.5.0/deps/eigen/test/array_of_string.cpp +32 -0
- polyscope-2.5.0/deps/eigen/test/array_replicate.cpp +81 -0
- polyscope-2.5.0/deps/eigen/test/array_reverse.cpp +204 -0
- polyscope-2.5.0/deps/eigen/test/bandmatrix.cpp +71 -0
- polyscope-2.5.0/deps/eigen/test/basicstuff.cpp +293 -0
- polyscope-2.5.0/deps/eigen/test/bdcsvd.cpp +118 -0
- polyscope-2.5.0/deps/eigen/test/bicgstab.cpp +34 -0
- polyscope-2.5.0/deps/eigen/test/block.cpp +316 -0
- polyscope-2.5.0/deps/eigen/test/boostmultiprec.cpp +208 -0
- polyscope-2.5.0/deps/eigen/test/bug1213.cpp +13 -0
- polyscope-2.5.0/deps/eigen/test/bug1213.h +8 -0
- polyscope-2.5.0/deps/eigen/test/bug1213_main.cpp +18 -0
- polyscope-2.5.0/deps/eigen/test/cholesky.cpp +532 -0
- polyscope-2.5.0/deps/eigen/test/cholmod_support.cpp +69 -0
- polyscope-2.5.0/deps/eigen/test/commainitializer.cpp +106 -0
- polyscope-2.5.0/deps/eigen/test/conjugate_gradient.cpp +34 -0
- polyscope-2.5.0/deps/eigen/test/conservative_resize.cpp +162 -0
- polyscope-2.5.0/deps/eigen/test/constructor.cpp +98 -0
- polyscope-2.5.0/deps/eigen/test/corners.cpp +117 -0
- polyscope-2.5.0/deps/eigen/test/ctorleak.cpp +81 -0
- polyscope-2.5.0/deps/eigen/test/denseLM.cpp +190 -0
- polyscope-2.5.0/deps/eigen/test/dense_storage.cpp +107 -0
- polyscope-2.5.0/deps/eigen/test/determinant.cpp +66 -0
- polyscope-2.5.0/deps/eigen/test/diagonal.cpp +105 -0
- polyscope-2.5.0/deps/eigen/test/diagonal_matrix_variadic_ctor.cpp +185 -0
- polyscope-2.5.0/deps/eigen/test/diagonalmatrices.cpp +173 -0
- polyscope-2.5.0/deps/eigen/test/dontalign.cpp +62 -0
- polyscope-2.5.0/deps/eigen/test/dynalloc.cpp +177 -0
- polyscope-2.5.0/deps/eigen/test/eigen2support.cpp +65 -0
- polyscope-2.5.0/deps/eigen/test/eigensolver_complex.cpp +176 -0
- polyscope-2.5.0/deps/eigen/test/eigensolver_generalized_real.cpp +103 -0
- polyscope-2.5.0/deps/eigen/test/eigensolver_generic.cpp +247 -0
- polyscope-2.5.0/deps/eigen/test/eigensolver_selfadjoint.cpp +273 -0
- polyscope-2.5.0/deps/eigen/test/evaluators.cpp +525 -0
- polyscope-2.5.0/deps/eigen/test/exceptions.cpp +49 -0
- polyscope-2.5.0/deps/eigen/test/fastmath.cpp +99 -0
- polyscope-2.5.0/deps/eigen/test/first_aligned.cpp +51 -0
- polyscope-2.5.0/deps/eigen/test/geo_alignedbox.cpp +196 -0
- polyscope-2.5.0/deps/eigen/test/geo_eulerangles.cpp +112 -0
- polyscope-2.5.0/deps/eigen/test/geo_homogeneous.cpp +125 -0
- polyscope-2.5.0/deps/eigen/test/geo_hyperplane.cpp +197 -0
- polyscope-2.5.0/deps/eigen/test/geo_orthomethods.cpp +133 -0
- polyscope-2.5.0/deps/eigen/test/geo_parametrizedline.cpp +130 -0
- polyscope-2.5.0/deps/eigen/test/geo_quaternion.cpp +331 -0
- polyscope-2.5.0/deps/eigen/test/geo_transformations.cpp +708 -0
- polyscope-2.5.0/deps/eigen/test/gpu_basic.cu +214 -0
- polyscope-2.5.0/deps/eigen/test/gpu_common.h +160 -0
- polyscope-2.5.0/deps/eigen/test/half_float.cpp +287 -0
- polyscope-2.5.0/deps/eigen/test/hessenberg.cpp +62 -0
- polyscope-2.5.0/deps/eigen/test/householder.cpp +148 -0
- polyscope-2.5.0/deps/eigen/test/incomplete_cholesky.cpp +69 -0
- polyscope-2.5.0/deps/eigen/test/indexed_view.cpp +452 -0
- polyscope-2.5.0/deps/eigen/test/initializer_list_construction.cpp +385 -0
- polyscope-2.5.0/deps/eigen/test/inplace_decomposition.cpp +110 -0
- polyscope-2.5.0/deps/eigen/test/integer_types.cpp +173 -0
- polyscope-2.5.0/deps/eigen/test/inverse.cpp +148 -0
- polyscope-2.5.0/deps/eigen/test/io.cpp +71 -0
- polyscope-2.5.0/deps/eigen/test/is_same_dense.cpp +41 -0
- polyscope-2.5.0/deps/eigen/test/jacobi.cpp +80 -0
- polyscope-2.5.0/deps/eigen/test/jacobisvd.cpp +144 -0
- polyscope-2.5.0/deps/eigen/test/klu_support.cpp +32 -0
- polyscope-2.5.0/deps/eigen/test/linearstructure.cpp +147 -0
- polyscope-2.5.0/deps/eigen/test/lscg.cpp +37 -0
- polyscope-2.5.0/deps/eigen/test/lu.cpp +252 -0
- polyscope-2.5.0/deps/eigen/test/main.h +850 -0
- polyscope-2.5.0/deps/eigen/test/mapped_matrix.cpp +207 -0
- polyscope-2.5.0/deps/eigen/test/mapstaticmethods.cpp +177 -0
- polyscope-2.5.0/deps/eigen/test/mapstride.cpp +234 -0
- polyscope-2.5.0/deps/eigen/test/meta.cpp +158 -0
- polyscope-2.5.0/deps/eigen/test/metis_support.cpp +25 -0
- polyscope-2.5.0/deps/eigen/test/miscmatrices.cpp +46 -0
- polyscope-2.5.0/deps/eigen/test/mixingtypes.cpp +328 -0
- polyscope-2.5.0/deps/eigen/test/mpl2only.cpp +24 -0
- polyscope-2.5.0/deps/eigen/test/nestbyvalue.cpp +37 -0
- polyscope-2.5.0/deps/eigen/test/nesting_ops.cpp +107 -0
- polyscope-2.5.0/deps/eigen/test/nomalloc.cpp +228 -0
- polyscope-2.5.0/deps/eigen/test/nullary.cpp +341 -0
- polyscope-2.5.0/deps/eigen/test/num_dimensions.cpp +90 -0
- polyscope-2.5.0/deps/eigen/test/numext.cpp +54 -0
- polyscope-2.5.0/deps/eigen/test/packetmath.cpp +812 -0
- polyscope-2.5.0/deps/eigen/test/packetmath_test_shared.h +229 -0
- polyscope-2.5.0/deps/eigen/test/pardiso_support.cpp +29 -0
- polyscope-2.5.0/deps/eigen/test/pastix_support.cpp +54 -0
- polyscope-2.5.0/deps/eigen/test/permutationmatrices.cpp +181 -0
- polyscope-2.5.0/deps/eigen/test/prec_inverse_4x4.cpp +83 -0
- polyscope-2.5.0/deps/eigen/test/product.h +259 -0
- polyscope-2.5.0/deps/eigen/test/product_extra.cpp +374 -0
- polyscope-2.5.0/deps/eigen/test/product_large.cpp +126 -0
- polyscope-2.5.0/deps/eigen/test/product_mmtr.cpp +106 -0
- polyscope-2.5.0/deps/eigen/test/product_notemporary.cpp +209 -0
- polyscope-2.5.0/deps/eigen/test/product_selfadjoint.cpp +86 -0
- polyscope-2.5.0/deps/eigen/test/product_small.cpp +297 -0
- polyscope-2.5.0/deps/eigen/test/product_symm.cpp +125 -0
- polyscope-2.5.0/deps/eigen/test/product_syrk.cpp +146 -0
- polyscope-2.5.0/deps/eigen/test/product_trmm.cpp +137 -0
- polyscope-2.5.0/deps/eigen/test/product_trmv.cpp +90 -0
- polyscope-2.5.0/deps/eigen/test/product_trsolve.cpp +127 -0
- polyscope-2.5.0/deps/eigen/test/qr.cpp +130 -0
- polyscope-2.5.0/deps/eigen/test/qr_colpivoting.cpp +368 -0
- polyscope-2.5.0/deps/eigen/test/qr_fullpivoting.cpp +159 -0
- polyscope-2.5.0/deps/eigen/test/qtvector.cpp +156 -0
- polyscope-2.5.0/deps/eigen/test/rand.cpp +118 -0
- polyscope-2.5.0/deps/eigen/test/real_qz.cpp +94 -0
- polyscope-2.5.0/deps/eigen/test/redux.cpp +183 -0
- polyscope-2.5.0/deps/eigen/test/ref.cpp +294 -0
- polyscope-2.5.0/deps/eigen/test/reshape.cpp +216 -0
- polyscope-2.5.0/deps/eigen/test/resize.cpp +41 -0
- polyscope-2.5.0/deps/eigen/test/rvalue_types.cpp +110 -0
- polyscope-2.5.0/deps/eigen/test/schur_complex.cpp +91 -0
- polyscope-2.5.0/deps/eigen/test/schur_real.cpp +110 -0
- polyscope-2.5.0/deps/eigen/test/selfadjoint.cpp +75 -0
- polyscope-2.5.0/deps/eigen/test/simplicial_cholesky.cpp +47 -0
- polyscope-2.5.0/deps/eigen/test/sizeof.cpp +47 -0
- polyscope-2.5.0/deps/eigen/test/sizeoverflow.cpp +64 -0
- polyscope-2.5.0/deps/eigen/test/smallvectors.cpp +67 -0
- polyscope-2.5.0/deps/eigen/test/solverbase.h +36 -0
- polyscope-2.5.0/deps/eigen/test/sparse.h +208 -0
- polyscope-2.5.0/deps/eigen/test/sparseLM.cpp +176 -0
- polyscope-2.5.0/deps/eigen/test/sparse_basic.cpp +744 -0
- polyscope-2.5.0/deps/eigen/test/sparse_block.cpp +322 -0
- polyscope-2.5.0/deps/eigen/test/sparse_permutations.cpp +236 -0
- polyscope-2.5.0/deps/eigen/test/sparse_product.cpp +475 -0
- polyscope-2.5.0/deps/eigen/test/sparse_ref.cpp +139 -0
- polyscope-2.5.0/deps/eigen/test/sparse_solver.h +568 -0
- polyscope-2.5.0/deps/eigen/test/sparse_solvers.cpp +125 -0
- polyscope-2.5.0/deps/eigen/test/sparse_vector.cpp +163 -0
- polyscope-2.5.0/deps/eigen/test/sparselu.cpp +45 -0
- polyscope-2.5.0/deps/eigen/test/sparseqr.cpp +149 -0
- polyscope-2.5.0/deps/eigen/test/special_numbers.cpp +58 -0
- polyscope-2.5.0/deps/eigen/test/split_test_helper.h +5994 -0
- polyscope-2.5.0/deps/eigen/test/spqr_support.cpp +64 -0
- polyscope-2.5.0/deps/eigen/test/stable_norm.cpp +239 -0
- polyscope-2.5.0/deps/eigen/test/stddeque.cpp +130 -0
- polyscope-2.5.0/deps/eigen/test/stddeque_overload.cpp +158 -0
- polyscope-2.5.0/deps/eigen/test/stdlist.cpp +130 -0
- polyscope-2.5.0/deps/eigen/test/stdlist_overload.cpp +192 -0
- polyscope-2.5.0/deps/eigen/test/stdvector.cpp +158 -0
- polyscope-2.5.0/deps/eigen/test/stdvector_overload.cpp +161 -0
- polyscope-2.5.0/deps/eigen/test/stl_iterators.cpp +529 -0
- polyscope-2.5.0/deps/eigen/test/superlu_support.cpp +23 -0
- polyscope-2.5.0/deps/eigen/test/svd_common.h +505 -0
- polyscope-2.5.0/deps/eigen/test/svd_fill.h +118 -0
- polyscope-2.5.0/deps/eigen/test/swap.cpp +94 -0
- polyscope-2.5.0/deps/eigen/test/symbolic_index.cpp +84 -0
- polyscope-2.5.0/deps/eigen/test/triangular.cpp +292 -0
- polyscope-2.5.0/deps/eigen/test/type_alias.cpp +48 -0
- polyscope-2.5.0/deps/eigen/test/umeyama.cpp +183 -0
- polyscope-2.5.0/deps/eigen/test/umfpack_support.cpp +34 -0
- polyscope-2.5.0/deps/eigen/test/unalignedassert.cpp +180 -0
- polyscope-2.5.0/deps/eigen/test/unalignedcount.cpp +60 -0
- polyscope-2.5.0/deps/eigen/test/upperbidiagonalization.cpp +43 -0
- polyscope-2.5.0/deps/eigen/test/vectorization_logic.cpp +445 -0
- polyscope-2.5.0/deps/eigen/test/vectorwiseop.cpp +298 -0
- polyscope-2.5.0/deps/eigen/test/visitor.cpp +133 -0
- polyscope-2.5.0/deps/eigen/test/zerosized.cpp +111 -0
- polyscope-2.5.0/deps/eigen/unsupported/CMakeLists.txt +9 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/AdolcForward +156 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/AlignedVector3 +234 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/ArpackSupport +31 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/AutoDiff +46 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/BVH +95 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CMakeLists.txt +32 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/CMakeLists.txt +8 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/Tensor +157 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/TensorSymmetry +42 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/ThreadPool +75 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1817 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +554 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +329 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +247 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1153 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1559 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1094 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +534 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +394 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +1021 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +73 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +6 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1413 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +575 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1650 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1679 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +429 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1132 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +544 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +214 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +347 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +135 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +6 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +104 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +360 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +1048 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +407 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +236 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +490 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +236 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +984 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +703 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +388 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +669 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +396 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +240 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +191 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +477 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +302 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +33 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +93 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +40 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +79 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +603 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +738 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +247 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +82 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +263 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +233 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +93 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +343 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +321 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +1152 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +708 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +291 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +350 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +1003 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +6 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +967 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +586 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +454 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +482 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +313 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +512 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +485 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +146 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +362 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +303 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +264 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +249 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +629 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +293 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +236 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +338 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +669 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +67 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +249 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +484 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +236 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +23 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +40 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +301 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +48 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +20 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +537 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +88 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/util/EmulateArray.h +261 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +158 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/EulerAngles +43 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/FFT +424 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/IterativeSolvers +46 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/KroneckerProduct +36 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/LevenbergMarquardt +49 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/MPRealSupport +213 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/MatrixFunctions +504 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/MoreVectorization +24 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/NonLinearOptimization +140 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/NumericalDiff +56 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/OpenGLSupport +322 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/Polynomials +138 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/Skyline +39 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/SparseExtra +53 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/SpecialFunctions +88 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/Splines +35 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +108 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +730 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +220 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/BVH/BVAlgorithms.h +293 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +790 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/EulerAngles/CMakeLists.txt +6 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/EulerAngles/EulerAngles.h +355 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/EulerAngles/EulerSystem.h +305 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/FFT/ei_fftw_impl.h +263 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +420 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +189 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +511 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/GMRES.h +335 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +90 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/IterationController.h +154 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/MINRES.h +267 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/IterativeSolvers/Scaling.h +193 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +305 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/CopyrightMINPACK.txt +52 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +84 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +202 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +160 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +188 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +396 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +441 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +569 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +373 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +705 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +368 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +117 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +95 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +601 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +657 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/chkder.h +66 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/covar.h +70 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +107 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +79 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +298 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +91 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +30 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +99 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +49 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +130 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Polynomials/Companion.h +275 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +428 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +143 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +352 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineMatrix.h +862 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +212 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineProduct.h +295 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineStorage.h +259 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Skyline/SkylineUtil.h +89 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +122 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +1079 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +404 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/MarketIO.h +282 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +247 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SparseExtra/RandomSetter.h +327 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +286 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +357 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +66 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1959 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +130 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +67 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +167 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +330 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +58 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2025 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +79 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/SpecialFunctions/arch/GPU/GpuSpecialFunctions.h +369 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Splines/Spline.h +507 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Splines/SplineFitting.h +431 -0
- polyscope-2.5.0/deps/eigen/unsupported/Eigen/src/Splines/SplineFwd.h +93 -0
- polyscope-2.5.0/deps/eigen/unsupported/README.txt +50 -0
- polyscope-2.5.0/deps/eigen/unsupported/bench/bench_svd.cpp +123 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/CMakeLists.txt +4 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/Overview.dox +31 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/SYCL.dox +9 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/eigendoxy_layout.xml.in +177 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/BVH_Example.cpp +50 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/CMakeLists.txt +24 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/EulerAngles.cpp +46 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/FFT.cpp +118 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixExponential.cpp +16 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixFunction.cpp +23 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixLogarithm.cpp +15 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixPower.cpp +16 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixPower_optimal.cpp +17 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixSine.cpp +20 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixSinh.cpp +20 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/MatrixSquareRoot.cpp +16 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/PolynomialSolver1.cpp +53 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/PolynomialUtils1.cpp +20 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/SYCL/CMakeLists.txt +38 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/examples/SYCL/CwiseMul.cpp +63 -0
- polyscope-2.5.0/deps/eigen/unsupported/doc/snippets/CMakeLists.txt +26 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/BVH.cpp +222 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/CMakeLists.txt +425 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/EulerAngles.cpp +296 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/FFT.cpp +2 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/FFTW.cpp +262 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/NonLinearOptimization.cpp +1849 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/NumericalDiff.cpp +114 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/alignedvector3.cpp +87 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/autodiff.cpp +387 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/autodiff_scalar.cpp +101 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/bessel_functions.cpp +370 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_eventcount.cpp +142 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_maxsizevector.cpp +77 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_meta.cpp +357 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_non_blocking_thread_pool.cpp +178 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_runqueue.cpp +235 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_argmax.cpp +294 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_argmax_gpu.cu +253 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_argmax_sycl.cpp +257 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_assign.cpp +370 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_block_access.cpp +576 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_block_eval.cpp +805 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_block_io.cpp +437 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_broadcast_sycl.cpp +144 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_broadcasting.cpp +331 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_builtins_sycl.cpp +354 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_cast_float16_gpu.cu +79 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_casts.cpp +115 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_chipping.cpp +425 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_chipping_sycl.cpp +623 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_comparisons.cpp +84 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu +100 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_complex_gpu.cu +186 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_concatenation.cpp +143 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_concatenation_sycl.cpp +180 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_const.cpp +62 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_contract_gpu.cu +218 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_contract_sycl.cpp +1026 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_contraction.cpp +597 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_convolution.cpp +150 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_convolution_sycl.cpp +469 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_custom_index.cpp +100 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_custom_op.cpp +111 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_custom_op_sycl.cpp +170 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_device.cu +396 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_device_sycl.cpp +77 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_dimension.cpp +88 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_empty.cpp +40 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_executor.cpp +731 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_expr.cpp +381 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_fft.cpp +304 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_fixed_size.cpp +261 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_forced_eval.cpp +79 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp +77 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_generator.cpp +91 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_generator_sycl.cpp +147 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_gpu.cu +1643 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_ifft.cpp +154 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_image_op_sycl.cpp +103 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_image_patch.cpp +809 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_image_patch_sycl.cpp +1092 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_index_list.cpp +385 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_inflation.cpp +81 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_inflation_sycl.cpp +136 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_intdiv.cpp +147 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_io.cpp +136 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_layout_swap.cpp +61 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp +126 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_lvalue.cpp +42 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_map.cpp +327 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_math.cpp +46 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_math_sycl.cpp +105 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_mixed_indices.cpp +53 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_morphing.cpp +509 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_morphing_sycl.cpp +386 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_move.cpp +81 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_notification.cpp +64 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_of_complex.cpp +103 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_of_const_values.cpp +105 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_of_float16_gpu.cu +498 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_of_strings.cpp +152 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_padding.cpp +93 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_padding_sycl.cpp +157 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_patch.cpp +172 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_patch_sycl.cpp +249 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_random.cpp +78 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_random_gpu.cu +86 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_random_sycl.cpp +100 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reduction.cpp +531 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reduction_gpu.cu +154 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reduction_sycl.cpp +1014 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_ref.cpp +248 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reverse.cpp +190 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_reverse_sycl.cpp +253 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_roundings.cpp +62 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_scan.cpp +110 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_scan_gpu.cu +78 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_scan_sycl.cpp +141 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_shuffling.cpp +228 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_shuffling_sycl.cpp +117 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_simple.cpp +327 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_striding.cpp +119 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_striding_sycl.cpp +203 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_sugar.cpp +81 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_sycl.cpp +361 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_symmetry.cpp +818 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_thread_local.cpp +149 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_thread_pool.cpp +721 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_trace.cpp +172 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_uint128.cpp +160 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_volume_patch.cpp +112 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp +222 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/dgmres.cpp +31 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/forward_adolc.cpp +141 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/gmres.cpp +31 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/kronecker_product.cpp +252 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/levenberg_marquardt.cpp +1477 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/matrix_exponential.cpp +141 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/matrix_function.cpp +227 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/matrix_functions.h +67 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/matrix_power.cpp +204 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/matrix_square_root.cpp +31 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/minres.cpp +44 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/mpreal/mpreal.h +3184 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/mpreal_support.cpp +65 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/openglsupport.cpp +333 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/polynomialsolver.cpp +232 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/polynomialutils.cpp +113 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/sparse_extra.cpp +186 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/special_functions.cpp +474 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/special_packetmath.cpp +140 -0
- polyscope-2.5.0/deps/eigen/unsupported/test/splines.cpp +281 -0
- polyscope-2.5.0/deps/polyscope/.github/workflows/linux.yml +66 -0
- polyscope-2.5.0/deps/polyscope/.gitmodules +17 -0
- polyscope-2.5.0/deps/polyscope/README.md +90 -0
- polyscope-2.5.0/deps/polyscope/deps/glm/doc/api/arrowright.png +0 -0
- polyscope-2.5.0/deps/polyscope/deps/happly/.clang-format +22 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/CMakeLists.txt +84 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.github/FUNDING.yml +1 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.github/ISSUE_TEMPLATE/issue_template.yml +92 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.github/workflows/build.yml +567 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.github/workflows/manual.yml +12 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/.gitignore +64 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/LICENSE.txt +21 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.cpp +633 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.h +39 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.cpp +308 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.h +37 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.cpp +608 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.h +44 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.cpp +628 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.h +47 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.cpp +838 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.h +75 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.cpp +424 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.h +33 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.cpp +938 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.h +66 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.cpp +309 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.h +47 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.h +75 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.mm +597 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.cpp +321 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.h +41 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.cpp +985 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.h +66 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3_loader.h +916 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.h +56 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.mm +830 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.cpp +847 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.h +46 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.cpp +809 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.h +47 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlgpu3.cpp +615 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlgpu3.h +49 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlgpu3_shaders.h +372 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.cpp +278 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.h +51 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.cpp +295 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.h +51 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.cpp +1689 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.h +222 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.cpp +880 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.h +67 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.cpp +966 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.h +53 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/sdlgpu3/build_instructions.txt +40 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/sdlgpu3/shader.frag +15 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/sdlgpu3/shader.vert +24 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/backends/vulkan/build_instructions.txt +4 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/BACKENDS.md +146 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/CHANGELOG.txt +7069 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/CONTRIBUTING.md +81 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/EXAMPLES.md +236 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/FAQ.md +710 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/FONTS.md +500 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/README.md +222 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/docs/TODO.txt +341 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/README.md +36 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/build.gradle +46 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml +24 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/main.cpp +383 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj +503 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/main.mm +337 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/main.cpp +171 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile.emscripten +94 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/main.cpp +208 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/CMakeLists.txt +47 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win32.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win64.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +190 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/main.cpp +534 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_wgpu/CMakeLists.txt +117 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_wgpu/Makefile.emscripten +91 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_wgpu/README.md +24 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_wgpu/main.cpp +350 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_null/Makefile +92 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/main.cpp +250 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/main.cpp +176 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/Makefile.emscripten +95 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/main.cpp +226 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/main.cpp +177 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/build_win32.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/build_win64.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj +190 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/main.cpp +543 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile +84 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile.emscripten +99 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/README.md +40 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/build_win32.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/build_win64.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/main.cpp +226 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/Makefile +73 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/build_win64.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj +189 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3.vcxproj.filters +60 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlgpu3/main.cpp +218 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/Makefile +73 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/main.cpp +188 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/build_win32.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/build_win64.bat +14 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj +190 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/example_sdl3_vulkan.vcxproj.filters +64 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_vulkan/main.cpp +552 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/main.cpp +271 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/main.cpp +274 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/build_win32.bat +8 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +180 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/main.cpp +539 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/main.cpp +264 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/build_mingw.bat +8 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/main.cpp +243 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/build_win32.bat +9 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/build_win64.bat +9 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj +178 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/example_win32_vulkan.vcxproj.filters +63 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_vulkan/main.cpp +559 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/imgui_examples.sln +201 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h +38 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.h +420 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imconfig.h +141 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui.cpp +17061 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui.h +3770 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_demo.cpp +10686 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_draw.cpp +4828 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_internal.h +3636 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_tables.cpp +4525 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imgui_widgets.cpp +10451 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imstb_textedit.h +1469 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/imstb_truetype.h +5085 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.cpp +88 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.h +25 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/fonts/binary_to_compressed_c.cpp +424 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/freetype/README.md +54 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.cpp +969 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.h +58 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/.github/CMakeLists.txt +95 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/.github/example_implot.cpp +55 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/.github/workflows/build.yml +144 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/LICENSE +21 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/README.md +178 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/TODO.md +102 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot.cpp +5901 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot.h +1304 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot_demo.cpp +2498 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot_internal.h +1689 -0
- polyscope-2.5.0/deps/polyscope/deps/imgui/implot/implot_items.cpp +2852 -0
- polyscope-2.5.0/deps/polyscope/examples/demo-app/demo_app.cpp +959 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/affine_remapper.ipp +192 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/camera_parameters.h +130 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/camera_view.h +152 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/check_invalid_values.h +27 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/color_quantity.h +52 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/color_quantity.ipp +35 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/context.h +121 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/curve_network.h +259 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/curve_network_quantity.h +25 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/elementary_geometry.h +21 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/floating_quantity.h +22 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/floating_quantity_structure.h +113 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/histogram.h +59 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/messages.h +32 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/numeric_helpers.h +127 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/options.h +159 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/parameterization_quantity.ipp +325 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/persistent_value.h +168 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/pick.h +91 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/point_cloud.h +219 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/point_cloud_quantity.h +24 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/polyscope.h +203 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/quantity.h +88 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/color_maps.h +93 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/colormap_defs.h +32 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/engine.h +700 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/ground_plane.h +65 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/managed_buffer.h +307 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +429 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/gl_engine_egl.h +118 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/gl_engine_glfw.h +91 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +29 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +21 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +51 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +43 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/render_image_quantity_base.h +86 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/scalar_quantity.h +96 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/scalar_quantity.ipp +414 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/screenshot.h +40 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/simple_triangle_mesh.h +143 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/slice_plane.h +120 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/structure.h +298 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/surface_color_quantity.h +82 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/surface_mesh.h +477 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/surface_mesh_quantity.h +29 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +103 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/surface_scalar_quantity.h +138 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/texture_map_quantity.h +43 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/texture_map_quantity.ipp +32 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/types.h +69 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/vector_quantity.ipp +330 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/view.h +200 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/volume_grid.h +217 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/volume_grid_quantity.h +27 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/volume_mesh.h +306 -0
- polyscope-2.5.0/deps/polyscope/include/polyscope/volume_mesh_quantity.h +30 -0
- polyscope-2.5.0/deps/polyscope/misc/generate_colormap_constant.py +60 -0
- polyscope-2.5.0/deps/polyscope/src/CMakeLists.txt +384 -0
- polyscope-2.5.0/deps/polyscope/src/camera_parameters.cpp +207 -0
- polyscope-2.5.0/deps/polyscope/src/camera_view.cpp +518 -0
- polyscope-2.5.0/deps/polyscope/src/color_image_quantity.cpp +181 -0
- polyscope-2.5.0/deps/polyscope/src/color_management.cpp +81 -0
- polyscope-2.5.0/deps/polyscope/src/curve_network.cpp +734 -0
- polyscope-2.5.0/deps/polyscope/src/curve_network_scalar_quantity.cpp +252 -0
- polyscope-2.5.0/deps/polyscope/src/elementary_geometry.cpp +35 -0
- polyscope-2.5.0/deps/polyscope/src/file_helpers.cpp +54 -0
- polyscope-2.5.0/deps/polyscope/src/floating_quantity_structure.cpp +139 -0
- polyscope-2.5.0/deps/polyscope/src/histogram.cpp +280 -0
- polyscope-2.5.0/deps/polyscope/src/image_quantity_base.cpp +133 -0
- polyscope-2.5.0/deps/polyscope/src/imgui_config.cpp +120 -0
- polyscope-2.5.0/deps/polyscope/src/messages.cpp +304 -0
- polyscope-2.5.0/deps/polyscope/src/options.cpp +81 -0
- polyscope-2.5.0/deps/polyscope/src/persistent_value.cpp +28 -0
- polyscope-2.5.0/deps/polyscope/src/pick.cpp +265 -0
- polyscope-2.5.0/deps/polyscope/src/point_cloud.cpp +567 -0
- polyscope-2.5.0/deps/polyscope/src/polyscope.cpp +1549 -0
- polyscope-2.5.0/deps/polyscope/src/quantity.cpp +44 -0
- polyscope-2.5.0/deps/polyscope/src/render/color_maps.cpp +94 -0
- polyscope-2.5.0/deps/polyscope/src/render/engine.cpp +1185 -0
- polyscope-2.5.0/deps/polyscope/src/render/ground_plane.cpp +491 -0
- polyscope-2.5.0/deps/polyscope/src/render/initialize_backend.cpp +107 -0
- polyscope-2.5.0/deps/polyscope/src/render/managed_buffer.cpp +628 -0
- polyscope-2.5.0/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +2087 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/gl_engine.cpp +2608 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/gl_engine_egl.cpp +579 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/gl_engine_glfw.cpp +338 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/common.cpp +470 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +526 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/grid_shaders.cpp +467 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +132 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +313 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/rules.cpp +523 -0
- polyscope-2.5.0/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +738 -0
- polyscope-2.5.0/deps/polyscope/src/render/shader_builder.cpp +169 -0
- polyscope-2.5.0/deps/polyscope/src/render_image_quantity_base.cpp +163 -0
- polyscope-2.5.0/deps/polyscope/src/scalar_image_quantity.cpp +175 -0
- polyscope-2.5.0/deps/polyscope/src/scalar_render_image_quantity.cpp +122 -0
- polyscope-2.5.0/deps/polyscope/src/screenshot.cpp +217 -0
- polyscope-2.5.0/deps/polyscope/src/simple_triangle_mesh.cpp +351 -0
- polyscope-2.5.0/deps/polyscope/src/slice_plane.cpp +453 -0
- polyscope-2.5.0/deps/polyscope/src/structure.cpp +351 -0
- polyscope-2.5.0/deps/polyscope/src/surface_color_quantity.cpp +202 -0
- polyscope-2.5.0/deps/polyscope/src/surface_mesh.cpp +2013 -0
- polyscope-2.5.0/deps/polyscope/src/surface_parameterization_quantity.cpp +278 -0
- polyscope-2.5.0/deps/polyscope/src/surface_scalar_quantity.cpp +398 -0
- polyscope-2.5.0/deps/polyscope/src/view.cpp +1242 -0
- polyscope-2.5.0/deps/polyscope/src/volume_grid.cpp +602 -0
- polyscope-2.5.0/deps/polyscope/src/volume_grid_scalar_quantity.cpp +390 -0
- polyscope-2.5.0/deps/polyscope/src/volume_mesh.cpp +1132 -0
- polyscope-2.5.0/deps/polyscope/test/CMakeLists.txt +124 -0
- polyscope-2.5.0/deps/polyscope/test/include/polyscope_test.h +167 -0
- polyscope-2.5.0/deps/polyscope/test/src/basics_test.cpp +274 -0
- polyscope-2.5.0/deps/polyscope/test/src/camera_view_test.cpp +176 -0
- polyscope-2.5.0/deps/polyscope/test/src/curve_network_test.cpp +217 -0
- polyscope-2.5.0/deps/polyscope/test/src/floating_test.cpp +264 -0
- polyscope-2.5.0/deps/polyscope/test/src/point_cloud_test.cpp +245 -0
- polyscope-2.5.0/deps/polyscope/test/src/surface_mesh_test.cpp +667 -0
- polyscope-2.5.0/deps/polyscope/test/src/volume_mesh_test.cpp +304 -0
- polyscope-2.5.0/deps/pybind11/.appveyor.yml +35 -0
- polyscope-2.5.0/deps/pybind11/.clang-format +38 -0
- polyscope-2.5.0/deps/pybind11/.clang-tidy +79 -0
- polyscope-2.5.0/deps/pybind11/.cmake-format.yaml +73 -0
- polyscope-2.5.0/deps/pybind11/.codespell-ignore-lines +24 -0
- polyscope-2.5.0/deps/pybind11/.gitattributes +1 -0
- polyscope-2.5.0/deps/pybind11/.github/CODEOWNERS +9 -0
- polyscope-2.5.0/deps/pybind11/.github/CONTRIBUTING.md +388 -0
- polyscope-2.5.0/deps/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
- polyscope-2.5.0/deps/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
- polyscope-2.5.0/deps/pybind11/.github/dependabot.yml +15 -0
- polyscope-2.5.0/deps/pybind11/.github/labeler.yml +13 -0
- polyscope-2.5.0/deps/pybind11/.github/labeler_merged.yml +8 -0
- polyscope-2.5.0/deps/pybind11/.github/matchers/pylint.json +32 -0
- polyscope-2.5.0/deps/pybind11/.github/pull_request_template.md +19 -0
- polyscope-2.5.0/deps/pybind11/.github/workflows/ci.yml +1241 -0
- polyscope-2.5.0/deps/pybind11/.github/workflows/configure.yml +92 -0
- polyscope-2.5.0/deps/pybind11/.github/workflows/emscripten.yaml +30 -0
- polyscope-2.5.0/deps/pybind11/.github/workflows/format.yml +60 -0
- polyscope-2.5.0/deps/pybind11/.github/workflows/labeler.yml +25 -0
- polyscope-2.5.0/deps/pybind11/.github/workflows/pip.yml +120 -0
- polyscope-2.5.0/deps/pybind11/.github/workflows/upstream.yml +116 -0
- polyscope-2.5.0/deps/pybind11/.gitignore +46 -0
- polyscope-2.5.0/deps/pybind11/.pre-commit-config.yaml +156 -0
- polyscope-2.5.0/deps/pybind11/.readthedocs.yml +20 -0
- polyscope-2.5.0/deps/pybind11/CMakeLists.txt +378 -0
- polyscope-2.5.0/deps/pybind11/LICENSE +29 -0
- polyscope-2.5.0/deps/pybind11/MANIFEST.in +6 -0
- polyscope-2.5.0/deps/pybind11/README.rst +181 -0
- polyscope-2.5.0/deps/pybind11/SECURITY.md +13 -0
- polyscope-2.5.0/deps/pybind11/docs/Doxyfile +21 -0
- polyscope-2.5.0/deps/pybind11/docs/_static/css/custom.css +3 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/cast/chrono.rst +81 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/cast/custom.rst +93 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/cast/eigen.rst +310 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/cast/functional.rst +109 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/cast/index.rst +43 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/cast/overview.rst +170 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/cast/stl.rst +249 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/cast/strings.rst +296 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/classes.rst +1335 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/embedding.rst +262 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/exceptions.rst +401 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/functions.rst +614 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/misc.rst +429 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/pycpp/index.rst +13 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/pycpp/numpy.rst +453 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/pycpp/object.rst +286 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
- polyscope-2.5.0/deps/pybind11/docs/advanced/smart_ptrs.rst +174 -0
- polyscope-2.5.0/deps/pybind11/docs/basics.rst +314 -0
- polyscope-2.5.0/deps/pybind11/docs/benchmark.py +89 -0
- polyscope-2.5.0/deps/pybind11/docs/benchmark.rst +95 -0
- polyscope-2.5.0/deps/pybind11/docs/changelog.rst +3285 -0
- polyscope-2.5.0/deps/pybind11/docs/classes.rst +555 -0
- polyscope-2.5.0/deps/pybind11/docs/cmake/index.rst +8 -0
- polyscope-2.5.0/deps/pybind11/docs/compiling.rst +726 -0
- polyscope-2.5.0/deps/pybind11/docs/conf.py +369 -0
- polyscope-2.5.0/deps/pybind11/docs/faq.rst +352 -0
- polyscope-2.5.0/deps/pybind11/docs/index.rst +48 -0
- polyscope-2.5.0/deps/pybind11/docs/installing.rst +105 -0
- polyscope-2.5.0/deps/pybind11/docs/limitations.rst +68 -0
- polyscope-2.5.0/deps/pybind11/docs/pybind11-logo.png +0 -0
- polyscope-2.5.0/deps/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- polyscope-2.5.0/deps/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
- polyscope-2.5.0/deps/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- polyscope-2.5.0/deps/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
- polyscope-2.5.0/deps/pybind11/docs/reference.rst +130 -0
- polyscope-2.5.0/deps/pybind11/docs/release.rst +143 -0
- polyscope-2.5.0/deps/pybind11/docs/requirements.in +6 -0
- polyscope-2.5.0/deps/pybind11/docs/requirements.txt +275 -0
- polyscope-2.5.0/deps/pybind11/docs/upgrade.rst +594 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/buffer_info.h +208 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/cast.h +1855 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/class.h +767 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/common.h +1287 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/cpp_conduit.h +77 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/descr.h +172 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/init.h +436 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/internals.h +766 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/type_caster_base.h +1195 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/eigen/matrix.h +715 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/eigen/tensor.h +515 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/embed.h +313 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/functional.h +149 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/gil.h +219 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/gil_safe_call_once.h +100 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/numpy.h +2139 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/pybind11.h +2978 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/pytypes.h +2606 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/stl/filesystem.h +124 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/stl_bind.h +822 -0
- polyscope-2.5.0/deps/pybind11/include/pybind11/typing.h +242 -0
- polyscope-2.5.0/deps/pybind11/noxfile.py +107 -0
- polyscope-2.5.0/deps/pybind11/pybind11/__init__.py +19 -0
- polyscope-2.5.0/deps/pybind11/pybind11/__main__.py +86 -0
- polyscope-2.5.0/deps/pybind11/pybind11/_version.py +12 -0
- polyscope-2.5.0/deps/pybind11/pybind11/commands.py +39 -0
- polyscope-2.5.0/deps/pybind11/pybind11/py.typed +0 -0
- polyscope-2.5.0/deps/pybind11/pybind11/setup_helpers.py +500 -0
- polyscope-2.5.0/deps/pybind11/pyproject.toml +87 -0
- polyscope-2.5.0/deps/pybind11/setup.cfg +43 -0
- polyscope-2.5.0/deps/pybind11/setup.py +149 -0
- polyscope-2.5.0/deps/pybind11/tests/CMakeLists.txt +604 -0
- polyscope-2.5.0/deps/pybind11/tests/conftest.py +224 -0
- polyscope-2.5.0/deps/pybind11/tests/constructor_stats.h +322 -0
- polyscope-2.5.0/deps/pybind11/tests/cross_module_gil_utils.cpp +111 -0
- polyscope-2.5.0/deps/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
- polyscope-2.5.0/deps/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
- polyscope-2.5.0/deps/pybind11/tests/env.py +31 -0
- polyscope-2.5.0/deps/pybind11/tests/exo_planet_c_api.cpp +103 -0
- polyscope-2.5.0/deps/pybind11/tests/exo_planet_pybind11.cpp +19 -0
- polyscope-2.5.0/deps/pybind11/tests/extra_python_package/pytest.ini +0 -0
- polyscope-2.5.0/deps/pybind11/tests/extra_python_package/test_files.py +299 -0
- polyscope-2.5.0/deps/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- polyscope-2.5.0/deps/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
- polyscope-2.5.0/deps/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
- polyscope-2.5.0/deps/pybind11/tests/local_bindings.h +92 -0
- polyscope-2.5.0/deps/pybind11/tests/pybind11_cross_module_tests.cpp +149 -0
- polyscope-2.5.0/deps/pybind11/tests/pybind11_tests.cpp +131 -0
- polyscope-2.5.0/deps/pybind11/tests/pybind11_tests.h +98 -0
- polyscope-2.5.0/deps/pybind11/tests/pyproject.toml +21 -0
- polyscope-2.5.0/deps/pybind11/tests/pytest.ini +23 -0
- polyscope-2.5.0/deps/pybind11/tests/requirements.txt +13 -0
- polyscope-2.5.0/deps/pybind11/tests/test_async.cpp +25 -0
- polyscope-2.5.0/deps/pybind11/tests/test_async.py +31 -0
- polyscope-2.5.0/deps/pybind11/tests/test_buffers.cpp +271 -0
- polyscope-2.5.0/deps/pybind11/tests/test_buffers.py +237 -0
- polyscope-2.5.0/deps/pybind11/tests/test_builtin_casters.cpp +387 -0
- polyscope-2.5.0/deps/pybind11/tests/test_builtin_casters.py +532 -0
- polyscope-2.5.0/deps/pybind11/tests/test_call_policies.cpp +113 -0
- polyscope-2.5.0/deps/pybind11/tests/test_call_policies.py +249 -0
- polyscope-2.5.0/deps/pybind11/tests/test_callbacks.cpp +280 -0
- polyscope-2.5.0/deps/pybind11/tests/test_callbacks.py +230 -0
- polyscope-2.5.0/deps/pybind11/tests/test_chrono.cpp +81 -0
- polyscope-2.5.0/deps/pybind11/tests/test_chrono.py +207 -0
- polyscope-2.5.0/deps/pybind11/tests/test_class.cpp +656 -0
- polyscope-2.5.0/deps/pybind11/tests/test_class.py +503 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/embed.cpp +23 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +28 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +39 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +46 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/main.cpp +6 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +47 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +41 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +47 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cmake_build/test.py +10 -0
- polyscope-2.5.0/deps/pybind11/tests/test_const_name.cpp +55 -0
- polyscope-2.5.0/deps/pybind11/tests/test_const_name.py +31 -0
- polyscope-2.5.0/deps/pybind11/tests/test_constants_and_functions.cpp +158 -0
- polyscope-2.5.0/deps/pybind11/tests/test_constants_and_functions.py +58 -0
- polyscope-2.5.0/deps/pybind11/tests/test_copy_move.cpp +544 -0
- polyscope-2.5.0/deps/pybind11/tests/test_copy_move.py +140 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cpp_conduit.cpp +22 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cpp_conduit.py +162 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
- polyscope-2.5.0/deps/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
- polyscope-2.5.0/deps/pybind11/tests/test_custom_type_casters.cpp +217 -0
- polyscope-2.5.0/deps/pybind11/tests/test_custom_type_casters.py +124 -0
- polyscope-2.5.0/deps/pybind11/tests/test_custom_type_setup.cpp +41 -0
- polyscope-2.5.0/deps/pybind11/tests/test_custom_type_setup.py +50 -0
- polyscope-2.5.0/deps/pybind11/tests/test_docstring_options.cpp +129 -0
- polyscope-2.5.0/deps/pybind11/tests/test_docstring_options.py +66 -0
- polyscope-2.5.0/deps/pybind11/tests/test_eigen_matrix.cpp +443 -0
- polyscope-2.5.0/deps/pybind11/tests/test_eigen_matrix.py +816 -0
- polyscope-2.5.0/deps/pybind11/tests/test_eigen_tensor.cpp +18 -0
- polyscope-2.5.0/deps/pybind11/tests/test_eigen_tensor.inl +338 -0
- polyscope-2.5.0/deps/pybind11/tests/test_eigen_tensor.py +290 -0
- polyscope-2.5.0/deps/pybind11/tests/test_embed/CMakeLists.txt +54 -0
- polyscope-2.5.0/deps/pybind11/tests/test_embed/catch.cpp +43 -0
- polyscope-2.5.0/deps/pybind11/tests/test_embed/external_module.cpp +20 -0
- polyscope-2.5.0/deps/pybind11/tests/test_embed/test_interpreter.cpp +488 -0
- polyscope-2.5.0/deps/pybind11/tests/test_embed/test_interpreter.py +16 -0
- polyscope-2.5.0/deps/pybind11/tests/test_embed/test_trampoline.py +18 -0
- polyscope-2.5.0/deps/pybind11/tests/test_enum.cpp +133 -0
- polyscope-2.5.0/deps/pybind11/tests/test_enum.py +270 -0
- polyscope-2.5.0/deps/pybind11/tests/test_eval.cpp +118 -0
- polyscope-2.5.0/deps/pybind11/tests/test_eval.py +52 -0
- polyscope-2.5.0/deps/pybind11/tests/test_eval_call.py +5 -0
- polyscope-2.5.0/deps/pybind11/tests/test_exceptions.cpp +388 -0
- polyscope-2.5.0/deps/pybind11/tests/test_exceptions.py +434 -0
- polyscope-2.5.0/deps/pybind11/tests/test_factory_constructors.cpp +430 -0
- polyscope-2.5.0/deps/pybind11/tests/test_factory_constructors.py +518 -0
- polyscope-2.5.0/deps/pybind11/tests/test_gil_scoped.cpp +144 -0
- polyscope-2.5.0/deps/pybind11/tests/test_gil_scoped.py +249 -0
- polyscope-2.5.0/deps/pybind11/tests/test_iostream.cpp +126 -0
- polyscope-2.5.0/deps/pybind11/tests/test_iostream.py +297 -0
- polyscope-2.5.0/deps/pybind11/tests/test_kwargs_and_defaults.cpp +325 -0
- polyscope-2.5.0/deps/pybind11/tests/test_kwargs_and_defaults.py +428 -0
- polyscope-2.5.0/deps/pybind11/tests/test_local_bindings.cpp +106 -0
- polyscope-2.5.0/deps/pybind11/tests/test_local_bindings.py +259 -0
- polyscope-2.5.0/deps/pybind11/tests/test_methods_and_attributes.cpp +492 -0
- polyscope-2.5.0/deps/pybind11/tests/test_methods_and_attributes.py +539 -0
- polyscope-2.5.0/deps/pybind11/tests/test_modules.cpp +125 -0
- polyscope-2.5.0/deps/pybind11/tests/test_modules.py +118 -0
- polyscope-2.5.0/deps/pybind11/tests/test_multiple_inheritance.cpp +341 -0
- polyscope-2.5.0/deps/pybind11/tests/test_multiple_inheritance.py +495 -0
- polyscope-2.5.0/deps/pybind11/tests/test_numpy_array.cpp +547 -0
- polyscope-2.5.0/deps/pybind11/tests/test_numpy_array.py +672 -0
- polyscope-2.5.0/deps/pybind11/tests/test_numpy_dtypes.cpp +641 -0
- polyscope-2.5.0/deps/pybind11/tests/test_numpy_dtypes.py +448 -0
- polyscope-2.5.0/deps/pybind11/tests/test_numpy_vectorize.cpp +107 -0
- polyscope-2.5.0/deps/pybind11/tests/test_numpy_vectorize.py +268 -0
- polyscope-2.5.0/deps/pybind11/tests/test_opaque_types.cpp +77 -0
- polyscope-2.5.0/deps/pybind11/tests/test_opaque_types.py +60 -0
- polyscope-2.5.0/deps/pybind11/tests/test_operator_overloading.cpp +281 -0
- polyscope-2.5.0/deps/pybind11/tests/test_operator_overloading.py +153 -0
- polyscope-2.5.0/deps/pybind11/tests/test_pickling.cpp +194 -0
- polyscope-2.5.0/deps/pybind11/tests/test_pickling.py +95 -0
- polyscope-2.5.0/deps/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
- polyscope-2.5.0/deps/pybind11/tests/test_python_multiple_inheritance.py +36 -0
- polyscope-2.5.0/deps/pybind11/tests/test_pytypes.cpp +989 -0
- polyscope-2.5.0/deps/pybind11/tests/test_pytypes.py +1092 -0
- polyscope-2.5.0/deps/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
- polyscope-2.5.0/deps/pybind11/tests/test_sequences_and_iterators.py +267 -0
- polyscope-2.5.0/deps/pybind11/tests/test_smart_ptr.cpp +476 -0
- polyscope-2.5.0/deps/pybind11/tests/test_smart_ptr.py +317 -0
- polyscope-2.5.0/deps/pybind11/tests/test_stl.cpp +549 -0
- polyscope-2.5.0/deps/pybind11/tests/test_stl.py +383 -0
- polyscope-2.5.0/deps/pybind11/tests/test_stl_binders.cpp +275 -0
- polyscope-2.5.0/deps/pybind11/tests/test_stl_binders.py +395 -0
- polyscope-2.5.0/deps/pybind11/tests/test_tagbased_polymorphic.cpp +148 -0
- polyscope-2.5.0/deps/pybind11/tests/test_tagbased_polymorphic.py +30 -0
- polyscope-2.5.0/deps/pybind11/tests/test_thread.cpp +66 -0
- polyscope-2.5.0/deps/pybind11/tests/test_thread.py +49 -0
- polyscope-2.5.0/deps/pybind11/tests/test_type_caster_pyobject_ptr.cpp +167 -0
- polyscope-2.5.0/deps/pybind11/tests/test_type_caster_pyobject_ptr.py +122 -0
- polyscope-2.5.0/deps/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
- polyscope-2.5.0/deps/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
- polyscope-2.5.0/deps/pybind11/tests/test_union.cpp +22 -0
- polyscope-2.5.0/deps/pybind11/tests/test_union.py +10 -0
- polyscope-2.5.0/deps/pybind11/tests/test_unnamed_namespace_a.cpp +38 -0
- polyscope-2.5.0/deps/pybind11/tests/test_unnamed_namespace_a.py +36 -0
- polyscope-2.5.0/deps/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
- polyscope-2.5.0/deps/pybind11/tests/test_unnamed_namespace_b.py +7 -0
- polyscope-2.5.0/deps/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
- polyscope-2.5.0/deps/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
- polyscope-2.5.0/deps/pybind11/tests/test_virtual_functions.cpp +592 -0
- polyscope-2.5.0/deps/pybind11/tests/test_virtual_functions.py +463 -0
- polyscope-2.5.0/deps/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
- polyscope-2.5.0/deps/pybind11/tests/valgrind-python.supp +117 -0
- polyscope-2.5.0/deps/pybind11/tools/FindPythonLibsNew.cmake +310 -0
- polyscope-2.5.0/deps/pybind11/tools/check-style.sh +44 -0
- polyscope-2.5.0/deps/pybind11/tools/cmake_uninstall.cmake.in +23 -0
- polyscope-2.5.0/deps/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
- polyscope-2.5.0/deps/pybind11/tools/libsize.py +38 -0
- polyscope-2.5.0/deps/pybind11/tools/make_changelog.py +92 -0
- polyscope-2.5.0/deps/pybind11/tools/pybind11.pc.in +7 -0
- polyscope-2.5.0/deps/pybind11/tools/pybind11Common.cmake +455 -0
- polyscope-2.5.0/deps/pybind11/tools/pybind11Config.cmake.in +233 -0
- polyscope-2.5.0/deps/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
- polyscope-2.5.0/deps/pybind11/tools/pybind11NewTools.cmake +341 -0
- polyscope-2.5.0/deps/pybind11/tools/pybind11Tools.cmake +239 -0
- polyscope-2.5.0/deps/pybind11/tools/pyproject.toml +3 -0
- polyscope-2.5.0/deps/pybind11/tools/setup_global.py.in +63 -0
- polyscope-2.5.0/deps/pybind11/tools/setup_main.py.in +44 -0
- polyscope-2.5.0/deps/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
- polyscope-2.5.0/pyproject.toml +36 -0
- polyscope-2.5.0/ruff.toml +10 -0
- polyscope-2.5.0/src/cpp/core.cpp +627 -0
- polyscope-2.5.0/src/cpp/curve_network.cpp +120 -0
- polyscope-2.5.0/src/cpp/imgui.cpp +2398 -0
- polyscope-2.5.0/src/cpp/imgui_utils.h +25 -0
- polyscope-2.5.0/src/cpp/implot.cpp +729 -0
- polyscope-2.5.0/src/cpp/point_cloud.cpp +104 -0
- polyscope-2.5.0/src/cpp/surface_mesh.cpp +212 -0
- polyscope-2.5.0/src/cpp/utils.h +262 -0
- polyscope-2.5.0/src/cpp/volume_grid.cpp +136 -0
- polyscope-2.5.0/src/cpp/volume_mesh.cpp +104 -0
- polyscope-2.5.0/src/polyscope/__init__.py +28 -0
- polyscope-2.5.0/src/polyscope/common.py +250 -0
- polyscope-2.5.0/src/polyscope/core.py +1101 -0
- polyscope-2.5.0/src/polyscope/curve_network.py +231 -0
- polyscope-2.5.0/src/polyscope/device_interop.py +478 -0
- polyscope-2.5.0/src/polyscope/implot/__init__.py +1 -0
- polyscope-2.5.0/src/polyscope/managed_buffer.py +147 -0
- polyscope-2.5.0/src/polyscope/point_cloud.py +196 -0
- polyscope-2.5.0/src/polyscope/structure.py +212 -0
- polyscope-2.5.0/src/polyscope/surface_mesh.py +436 -0
- polyscope-2.5.0/src/polyscope/volume_grid.py +222 -0
- polyscope-2.5.0/src/polyscope/volume_mesh.py +236 -0
- polyscope-2.5.0/src/polyscope_bindings/__init__.pyi +0 -0
- polyscope-2.5.0/test/.gitignore +3 -0
- polyscope-2.5.0/test/assets/test_colormap.png +0 -0
- polyscope-2.5.0/test/assets/testwax_b.jpg +0 -0
- polyscope-2.5.0/test/assets/testwax_g.jpg +0 -0
- polyscope-2.5.0/test/assets/testwax_k.jpg +0 -0
- polyscope-2.5.0/test/assets/testwax_r.jpg +0 -0
- polyscope-2.5.0/test/fast_update_demo.py +112 -0
- polyscope-2.5.0/test/imgui_demo.py +178 -0
- polyscope-2.5.0/test/polyscope_demo.py +282 -0
- polyscope-2.5.0/test/polyscope_test.py +2623 -0
- polyscope-2.5.0/test/ps_test.py +30 -0
- polyscope-2.3.0/CMakeLists.txt +0 -33
- polyscope-2.3.0/PKG-INFO +0 -103
- polyscope-2.3.0/README.md +0 -45
- polyscope-2.3.0/deps/polyscope/.git +0 -1
- polyscope-2.3.0/deps/polyscope/.github/workflows/linux.yml +0 -54
- polyscope-2.3.0/deps/polyscope/.gitmodules +0 -14
- polyscope-2.3.0/deps/polyscope/README.md +0 -89
- polyscope-2.3.0/deps/polyscope/deps/glfw/.git +0 -1
- polyscope-2.3.0/deps/polyscope/deps/glm/.git +0 -1
- polyscope-2.3.0/deps/polyscope/deps/happly/.git +0 -1
- polyscope-2.3.0/deps/polyscope/deps/imgui/CMakeLists.txt +0 -76
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.git +0 -1
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.github/FUNDING.yml +0 -1
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.github/ISSUE_TEMPLATE/issue_template.yml +0 -90
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.github/workflows/build.yml +0 -507
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/.gitignore +0 -59
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/LICENSE.txt +0 -21
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.cpp +0 -613
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.h +0 -38
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.cpp +0 -306
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.h +0 -36
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.cpp +0 -589
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.h +0 -31
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.cpp +0 -605
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.h +0 -32
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.cpp +0 -761
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.h +0 -44
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.cpp +0 -410
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.h +0 -31
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.cpp +0 -854
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.h +0 -58
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.cpp +0 -308
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.h +0 -46
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.h +0 -72
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.mm +0 -590
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.cpp +0 -302
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.h +0 -38
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.cpp +0 -956
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.h +0 -66
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3_loader.h +0 -816
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.h +0 -51
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.mm +0 -811
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.cpp +0 -753
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.h +0 -45
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.cpp +0 -697
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.h +0 -47
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.cpp +0 -266
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.h +0 -39
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.cpp +0 -260
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.h +0 -39
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.cpp +0 -1585
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.h +0 -188
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.cpp +0 -797
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.h +0 -49
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.cpp +0 -903
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.h +0 -52
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/BACKENDS.md +0 -146
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/CHANGELOG.txt +0 -5565
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/CONTRIBUTING.md +0 -81
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/EXAMPLES.md +0 -245
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/FAQ.md +0 -675
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/FONTS.md +0 -498
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/README.md +0 -220
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/docs/TODO.txt +0 -346
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/README.md +0 -36
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/build.gradle +0 -46
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml +0 -24
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/main.cpp +0 -383
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj +0 -503
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/main.mm +0 -337
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/Makefile.emscripten +0 -88
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/README.md +0 -24
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/main.cpp +0 -280
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/web/index.html +0 -80
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/main.cpp +0 -166
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile.emscripten +0 -91
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/main.cpp +0 -197
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/CMakeLists.txt +0 -45
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win32.bat +0 -14
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win64.bat +0 -13
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +0 -190
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/main.cpp +0 -562
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_null/Makefile +0 -92
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/main.cpp +0 -245
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/main.cpp +0 -171
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/Makefile.emscripten +0 -92
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/main.cpp +0 -208
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/main.cpp +0 -172
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/build_win32.bat +0 -10
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj +0 -190
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/main.cpp +0 -571
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile +0 -84
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile.emscripten +0 -96
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/README.md +0 -40
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/build_win32.bat +0 -8
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/main.cpp +0 -207
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/Makefile +0 -73
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/main.cpp +0 -178
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/main.cpp +0 -259
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/main.cpp +0 -263
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/build_win32.bat +0 -9
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +0 -180
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/main.cpp +0 -470
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/main.cpp +0 -250
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/main.cpp +0 -238
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/imgui_examples.sln +0 -151
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h +0 -37
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib +0 -0
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib +0 -0
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.h +0 -420
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imconfig.h +0 -131
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui.cpp +0 -15727
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui.h +0 -3308
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_demo.cpp +0 -8558
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_draw.cpp +0 -4308
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_internal.h +0 -3582
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_tables.cpp +0 -4379
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imgui_widgets.cpp +0 -8967
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imstb_textedit.h +0 -1441
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/imstb_truetype.h +0 -5085
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.cpp +0 -85
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.h +0 -21
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/fonts/binary_to_compressed_c.cpp +0 -388
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/freetype/README.md +0 -44
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.cpp +0 -950
- polyscope-2.3.0/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.h +0 -51
- polyscope-2.3.0/deps/polyscope/examples/demo-app/demo_app.cpp +0 -885
- polyscope-2.3.0/deps/polyscope/include/polyscope/affine_remapper.ipp +0 -190
- polyscope-2.3.0/deps/polyscope/include/polyscope/camera_parameters.h +0 -129
- polyscope-2.3.0/deps/polyscope/include/polyscope/camera_view.h +0 -144
- polyscope-2.3.0/deps/polyscope/include/polyscope/color_quantity.h +0 -51
- polyscope-2.3.0/deps/polyscope/include/polyscope/color_quantity.ipp +0 -30
- polyscope-2.3.0/deps/polyscope/include/polyscope/context.h +0 -110
- polyscope-2.3.0/deps/polyscope/include/polyscope/curve_network.h +0 -240
- polyscope-2.3.0/deps/polyscope/include/polyscope/curve_network_quantity.h +0 -25
- polyscope-2.3.0/deps/polyscope/include/polyscope/floating_quantity.h +0 -22
- polyscope-2.3.0/deps/polyscope/include/polyscope/floating_quantity_structure.h +0 -112
- polyscope-2.3.0/deps/polyscope/include/polyscope/histogram.h +0 -56
- polyscope-2.3.0/deps/polyscope/include/polyscope/messages.h +0 -30
- polyscope-2.3.0/deps/polyscope/include/polyscope/options.h +0 -132
- polyscope-2.3.0/deps/polyscope/include/polyscope/parameterization_quantity.ipp +0 -324
- polyscope-2.3.0/deps/polyscope/include/polyscope/persistent_value.h +0 -162
- polyscope-2.3.0/deps/polyscope/include/polyscope/pick.h +0 -53
- polyscope-2.3.0/deps/polyscope/include/polyscope/point_cloud.h +0 -211
- polyscope-2.3.0/deps/polyscope/include/polyscope/point_cloud_quantity.h +0 -24
- polyscope-2.3.0/deps/polyscope/include/polyscope/polyscope.h +0 -195
- polyscope-2.3.0/deps/polyscope/include/polyscope/quantity.h +0 -84
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/color_maps.h +0 -87
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/colormap_defs.h +0 -27
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/engine.h +0 -687
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/ground_plane.h +0 -70
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/managed_buffer.h +0 -299
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +0 -425
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/gl_engine_egl.h +0 -80
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/gl_engine_glfw.h +0 -88
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +0 -28
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +0 -20
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +0 -49
- polyscope-2.3.0/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +0 -42
- polyscope-2.3.0/deps/polyscope/include/polyscope/render_image_quantity_base.h +0 -82
- polyscope-2.3.0/deps/polyscope/include/polyscope/scalar_quantity.h +0 -85
- polyscope-2.3.0/deps/polyscope/include/polyscope/scalar_quantity.ipp +0 -295
- polyscope-2.3.0/deps/polyscope/include/polyscope/screenshot.h +0 -26
- polyscope-2.3.0/deps/polyscope/include/polyscope/simple_triangle_mesh.h +0 -134
- polyscope-2.3.0/deps/polyscope/include/polyscope/slice_plane.h +0 -119
- polyscope-2.3.0/deps/polyscope/include/polyscope/structure.h +0 -292
- polyscope-2.3.0/deps/polyscope/include/polyscope/surface_color_quantity.h +0 -78
- polyscope-2.3.0/deps/polyscope/include/polyscope/surface_mesh.h +0 -461
- polyscope-2.3.0/deps/polyscope/include/polyscope/surface_mesh_quantity.h +0 -29
- polyscope-2.3.0/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +0 -100
- polyscope-2.3.0/deps/polyscope/include/polyscope/surface_scalar_quantity.h +0 -136
- polyscope-2.3.0/deps/polyscope/include/polyscope/types.h +0 -62
- polyscope-2.3.0/deps/polyscope/include/polyscope/vector_quantity.ipp +0 -327
- polyscope-2.3.0/deps/polyscope/include/polyscope/view.h +0 -159
- polyscope-2.3.0/deps/polyscope/include/polyscope/volume_grid.h +0 -209
- polyscope-2.3.0/deps/polyscope/include/polyscope/volume_grid_quantity.h +0 -27
- polyscope-2.3.0/deps/polyscope/include/polyscope/volume_mesh.h +0 -298
- polyscope-2.3.0/deps/polyscope/include/polyscope/volume_mesh_quantity.h +0 -30
- polyscope-2.3.0/deps/polyscope/misc/generate_colormap_constant.py +0 -49
- polyscope-2.3.0/deps/polyscope/src/CMakeLists.txt +0 -375
- polyscope-2.3.0/deps/polyscope/src/camera_parameters.cpp +0 -191
- polyscope-2.3.0/deps/polyscope/src/camera_view.cpp +0 -470
- polyscope-2.3.0/deps/polyscope/src/color_image_quantity.cpp +0 -179
- polyscope-2.3.0/deps/polyscope/src/color_management.cpp +0 -84
- polyscope-2.3.0/deps/polyscope/src/curve_network.cpp +0 -579
- polyscope-2.3.0/deps/polyscope/src/curve_network_scalar_quantity.cpp +0 -213
- polyscope-2.3.0/deps/polyscope/src/file_helpers.cpp +0 -54
- polyscope-2.3.0/deps/polyscope/src/floating_quantity_structure.cpp +0 -119
- polyscope-2.3.0/deps/polyscope/src/histogram.cpp +0 -262
- polyscope-2.3.0/deps/polyscope/src/image_quantity_base.cpp +0 -133
- polyscope-2.3.0/deps/polyscope/src/imgui_config.cpp +0 -104
- polyscope-2.3.0/deps/polyscope/src/messages.cpp +0 -284
- polyscope-2.3.0/deps/polyscope/src/options.cpp +0 -67
- polyscope-2.3.0/deps/polyscope/src/persistent_value.cpp +0 -25
- polyscope-2.3.0/deps/polyscope/src/pick.cpp +0 -170
- polyscope-2.3.0/deps/polyscope/src/point_cloud.cpp +0 -524
- polyscope-2.3.0/deps/polyscope/src/polyscope.cpp +0 -1306
- polyscope-2.3.0/deps/polyscope/src/quantity.cpp +0 -40
- polyscope-2.3.0/deps/polyscope/src/render/color_maps.cpp +0 -78
- polyscope-2.3.0/deps/polyscope/src/render/engine.cpp +0 -1172
- polyscope-2.3.0/deps/polyscope/src/render/ground_plane.cpp +0 -481
- polyscope-2.3.0/deps/polyscope/src/render/initialize_backend.cpp +0 -99
- polyscope-2.3.0/deps/polyscope/src/render/managed_buffer.cpp +0 -614
- polyscope-2.3.0/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +0 -2061
- polyscope-2.3.0/deps/polyscope/src/render/opengl/gl_engine.cpp +0 -2605
- polyscope-2.3.0/deps/polyscope/src/render/opengl/gl_engine_egl.cpp +0 -357
- polyscope-2.3.0/deps/polyscope/src/render/opengl/gl_engine_glfw.cpp +0 -262
- polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/common.cpp +0 -449
- polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +0 -484
- polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/grid_shaders.cpp +0 -466
- polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +0 -92
- polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +0 -309
- polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/rules.cpp +0 -470
- polyscope-2.3.0/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +0 -675
- polyscope-2.3.0/deps/polyscope/src/render/shader_builder.cpp +0 -179
- polyscope-2.3.0/deps/polyscope/src/render_image_quantity_base.cpp +0 -117
- polyscope-2.3.0/deps/polyscope/src/scalar_image_quantity.cpp +0 -173
- polyscope-2.3.0/deps/polyscope/src/scalar_render_image_quantity.cpp +0 -123
- polyscope-2.3.0/deps/polyscope/src/screenshot.cpp +0 -164
- polyscope-2.3.0/deps/polyscope/src/simple_triangle_mesh.cpp +0 -312
- polyscope-2.3.0/deps/polyscope/src/slice_plane.cpp +0 -447
- polyscope-2.3.0/deps/polyscope/src/structure.cpp +0 -343
- polyscope-2.3.0/deps/polyscope/src/surface_color_quantity.cpp +0 -169
- polyscope-2.3.0/deps/polyscope/src/surface_mesh.cpp +0 -1786
- polyscope-2.3.0/deps/polyscope/src/surface_parameterization_quantity.cpp +0 -268
- polyscope-2.3.0/deps/polyscope/src/surface_scalar_quantity.cpp +0 -345
- polyscope-2.3.0/deps/polyscope/src/view.cpp +0 -1091
- polyscope-2.3.0/deps/polyscope/src/volume_grid.cpp +0 -557
- polyscope-2.3.0/deps/polyscope/src/volume_grid_scalar_quantity.cpp +0 -390
- polyscope-2.3.0/deps/polyscope/src/volume_mesh.cpp +0 -1075
- polyscope-2.3.0/deps/polyscope/test/CMakeLists.txt +0 -124
- polyscope-2.3.0/deps/polyscope/test/include/polyscope_test.h +0 -171
- polyscope-2.3.0/deps/polyscope/test/src/basics_test.cpp +0 -145
- polyscope-2.3.0/deps/polyscope/test/src/camera_view_test.cpp +0 -176
- polyscope-2.3.0/deps/polyscope/test/src/curve_network_test.cpp +0 -125
- polyscope-2.3.0/deps/polyscope/test/src/floating_test.cpp +0 -230
- polyscope-2.3.0/deps/polyscope/test/src/point_cloud_test.cpp +0 -220
- polyscope-2.3.0/deps/polyscope/test/src/surface_mesh_test.cpp +0 -580
- polyscope-2.3.0/deps/polyscope/test/src/volume_mesh_test.cpp +0 -230
- polyscope-2.3.0/deps/pybind11/CMakeLists.txt +0 -373
- polyscope-2.3.0/deps/pybind11/include/pybind11/buffer_info.h +0 -208
- polyscope-2.3.0/deps/pybind11/include/pybind11/cast.h +0 -1837
- polyscope-2.3.0/deps/pybind11/include/pybind11/detail/class.h +0 -748
- polyscope-2.3.0/deps/pybind11/include/pybind11/detail/common.h +0 -1267
- polyscope-2.3.0/deps/pybind11/include/pybind11/detail/descr.h +0 -171
- polyscope-2.3.0/deps/pybind11/include/pybind11/detail/init.h +0 -434
- polyscope-2.3.0/deps/pybind11/include/pybind11/detail/internals.h +0 -667
- polyscope-2.3.0/deps/pybind11/include/pybind11/detail/type_caster_base.h +0 -1218
- polyscope-2.3.0/deps/pybind11/include/pybind11/eigen/matrix.h +0 -714
- polyscope-2.3.0/deps/pybind11/include/pybind11/eigen/tensor.h +0 -517
- polyscope-2.3.0/deps/pybind11/include/pybind11/embed.h +0 -316
- polyscope-2.3.0/deps/pybind11/include/pybind11/functional.h +0 -138
- polyscope-2.3.0/deps/pybind11/include/pybind11/gil.h +0 -247
- polyscope-2.3.0/deps/pybind11/include/pybind11/gil_safe_call_once.h +0 -91
- polyscope-2.3.0/deps/pybind11/include/pybind11/numpy.h +0 -2133
- polyscope-2.3.0/deps/pybind11/include/pybind11/pybind11.h +0 -2963
- polyscope-2.3.0/deps/pybind11/include/pybind11/pytypes.h +0 -2574
- polyscope-2.3.0/deps/pybind11/include/pybind11/stl/filesystem.h +0 -116
- polyscope-2.3.0/deps/pybind11/include/pybind11/stl_bind.h +0 -823
- polyscope-2.3.0/deps/pybind11/include/pybind11/typing.h +0 -125
- polyscope-2.3.0/deps/pybind11/tests/CMakeLists.txt +0 -589
- polyscope-2.3.0/deps/pybind11/tests/constructor_stats.h +0 -322
- polyscope-2.3.0/deps/pybind11/tests/local_bindings.h +0 -92
- polyscope-2.3.0/deps/pybind11/tests/pybind11_tests.h +0 -85
- polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -28
- polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -39
- polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -46
- polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -47
- polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -41
- polyscope-2.3.0/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -47
- polyscope-2.3.0/deps/pybind11/tests/test_embed/CMakeLists.txt +0 -47
- polyscope-2.3.0/deps/pybind11/tools/FindPythonLibsNew.cmake +0 -310
- polyscope-2.3.0/deps/pybind11/tools/pybind11Common.cmake +0 -419
- polyscope-2.3.0/deps/pybind11/tools/pybind11NewTools.cmake +0 -311
- polyscope-2.3.0/deps/pybind11/tools/pybind11Tools.cmake +0 -239
- polyscope-2.3.0/setup.cfg +0 -4
- polyscope-2.3.0/setup.py +0 -113
- polyscope-2.3.0/src/cpp/core.cpp +0 -538
- polyscope-2.3.0/src/cpp/curve_network.cpp +0 -96
- polyscope-2.3.0/src/cpp/imgui.cpp +0 -2344
- polyscope-2.3.0/src/cpp/point_cloud.cpp +0 -84
- polyscope-2.3.0/src/cpp/surface_mesh.cpp +0 -195
- polyscope-2.3.0/src/cpp/utils.h +0 -248
- polyscope-2.3.0/src/cpp/volume_grid.cpp +0 -129
- polyscope-2.3.0/src/cpp/volume_mesh.cpp +0 -97
- polyscope-2.3.0/src/polyscope/__init__.py +0 -15
- polyscope-2.3.0/src/polyscope/common.py +0 -220
- polyscope-2.3.0/src/polyscope/core.py +0 -890
- polyscope-2.3.0/src/polyscope/curve_network.py +0 -209
- polyscope-2.3.0/src/polyscope/device_interop.py +0 -431
- polyscope-2.3.0/src/polyscope/managed_buffer.py +0 -144
- polyscope-2.3.0/src/polyscope/point_cloud.py +0 -177
- polyscope-2.3.0/src/polyscope/structure.py +0 -208
- polyscope-2.3.0/src/polyscope/surface_mesh.py +0 -418
- polyscope-2.3.0/src/polyscope/volume_grid.py +0 -216
- polyscope-2.3.0/src/polyscope/volume_mesh.py +0 -230
- polyscope-2.3.0/src/polyscope.egg-info/PKG-INFO +0 -103
- polyscope-2.3.0/src/polyscope.egg-info/SOURCES.txt +0 -2771
- polyscope-2.3.0/src/polyscope.egg-info/dependency_links.txt +0 -1
- polyscope-2.3.0/src/polyscope.egg-info/not-zip-safe +0 -1
- polyscope-2.3.0/src/polyscope.egg-info/requires.txt +0 -1
- polyscope-2.3.0/src/polyscope.egg-info/top_level.txt +0 -2
- {polyscope-2.3.0/deps/polyscope → polyscope-2.5.0}/.clang-format +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/LICENSE +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/MANIFEST.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.BSD +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.GPL +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.LGPL +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.MINPACK +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.MPL2 +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/COPYING.README +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Cholesky +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/CholmodSupport +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Core +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Dense +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Eigen +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Eigenvalues +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Geometry +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Householder +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/IterativeLinearSolvers +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Jacobi +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/KLUSupport +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/LU +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/MetisSupport +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/OrderingMethods +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/PaStiXSupport +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/PardisoSupport +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/QR +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/QtAlignedMalloc +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SPQRSupport +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SVD +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/Sparse +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SparseCholesky +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SparseCore +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SparseLU +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SparseQR +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/StdDeque +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/StdList +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/StdVector +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/SuperLUSupport +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/UmfPackSupport +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Cholesky/LDLT.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Cholesky/LLT.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ArithmeticSequence.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Array.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ArrayBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ArrayWrapper.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Assign.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/AssignEvaluator.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Assign_MKL.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/BandMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Block.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/BooleanRedux.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CommaInitializer.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ConditionEstimator.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CoreEvaluators.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CoreIterators.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseBinaryOp.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseNullaryOp.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseTernaryOp.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseUnaryOp.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/CwiseUnaryView.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DenseBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DenseCoeffsBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DenseStorage.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Diagonal.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DiagonalMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/DiagonalProduct.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Dot.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/EigenBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ForceAlignedAccess.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Fuzzy.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/GeneralProduct.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/GenericPacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/GlobalFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/IO.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/IndexedView.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Inverse.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Map.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/MapBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/MathFunctionsImpl.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Matrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/MatrixBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/NestByValue.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/NoAlias.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/NumTraits.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/PermutationMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/PlainObjectBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Product.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ProductEvaluators.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Random.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Redux.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Ref.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Replicate.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Reshaped.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/ReturnByValue.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Reverse.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Select.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/SelfAdjointView.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Solve.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/SolveTriangular.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/SolverBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/StableNorm.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/StlIterators.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Stride.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Swap.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Transpose.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Transpositions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/TriangularMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/VectorBlock.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/VectorwiseOp.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/Visitor.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX/Complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/Half.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/Settings.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/MSA/Complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/NEON/Complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SSE/Complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/StlFunctors.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/Parallelizer.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/BlasUtil.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/Constants.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/IntegralConstant.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/MKL_support.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/Macros.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/Memory.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/Meta.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/NonMPL2.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/ReshapedHelper.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/StaticAssert.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/SymbolicIndex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Core/util/XprHelper.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/RealQZ.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/AlignedBox.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/AngleAxis.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/EulerAngles.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Homogeneous.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Hyperplane.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/OrthoMethods.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/ParametrizedLine.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Quaternion.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Rotation2D.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/RotationBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Scaling.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Transform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Translation.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/Umeyama.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Householder/BlockHouseholder.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Householder/Householder.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Householder/HouseholderSequence.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/Jacobi/Jacobi.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/KLUSupport/KLUSupport.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/Determinant.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/FullPivLU.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/InverseImpl.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/PartialPivLU.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/LU/arch/Inverse_SSE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/MetisSupport/MetisSupport.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/OrderingMethods/Amd.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/OrderingMethods/Ordering.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/HouseholderQR.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/BDCSVD.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/JacobiSVD.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/SVDBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/AmbiVector.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/CompressedStorage.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseAssign.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseBlock.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseColEtree.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseDot.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseMap.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparsePermutation.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseProduct.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseRedux.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseRef.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseTranspose.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseUtil.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseVector.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/SparseView.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseCore/TriangularSolver.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SparseQR/SparseQR.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/StlSupport/StdDeque.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/StlSupport/StdList.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/StlSupport/StdVector.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/StlSupport/details.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/Image.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/Kernel.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/RealSvd2x2.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/blas.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/lapack.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/lapacke.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/misc/lapacke_mangling.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/BlockMethods.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/IndexedViewMethods.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/Eigen/src/plugins/ReshapedMethods.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/eigen/README.md +0 -0
- /polyscope-2.3.0/deps/polyscope/deps/glm/doc/api/arrowright.png → /polyscope-2.5.0/deps/eigen/doc/ftv2pnode.png +0 -0
- /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
- {polyscope-2.3.0/deps/polyscope/deps/happly → polyscope-2.5.0/deps/polyscope}/.clang-format +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/.github/workflows/macos.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/.github/workflows/windows.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/.gitignore +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/LICENSE +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/MarchingCubeCpp/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/MarchingCubeCpp/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/MarchingCubeCpp/include/MarchingCube/MC.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/args/LICENSE +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/args/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/args/args/args.hxx +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/LICENSE +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/include/KHR/khrplatform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/include/glad/glad.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/src/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glad/src/glad.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.appveyor.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.gitattributes +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.github/CODEOWNERS +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.github/workflows/build.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.gitignore +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/.mailmap +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/GenerateMappings.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/MacOSXBundleInfo.plist.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32-clang.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/modules/FindEpollShim.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/modules/FindOSMesa.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/modules/FindWaylandProtocols.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/modules/FindXKBCommon.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32-clang.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/CONTRIBUTORS.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/LICENSE.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/cmake_uninstall.cmake.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/getopt.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/getopt.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad/gl.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad/khrplatform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad/vk_platform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad/vulkan.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad_gl.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/glad_vulkan.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/linmath.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/mingw/_mingw_dxhelper.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/mingw/dinput.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/mingw/xinput.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/nuklear.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/nuklear_glfw_gl2.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/stb_image_write.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/tinycthread.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/tinycthread.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/deps/vs2008/stdint.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/CONTRIBUTING.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/Doxyfile.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/DoxygenLayout.xml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/SUPPORT.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/build.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/compat.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/compile.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/context.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/extra.css +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/extra.css.map +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/extra.scss +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/footer.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/header.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/input.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/internal.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/intro.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/main.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/monitor.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/moving.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/news.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/quick.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/spaces.svg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/vulkan.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/docs/window.dox +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/boing.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/gears.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/glfw.icns +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/glfw.ico +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/glfw.rc +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/heightmap.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/offscreen.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/particles.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/sharing.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/simple.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/splitview.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/examples/wave.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/include/GLFW/glfw3.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/include/GLFW/glfw3native.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_init.m +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_joystick.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_joystick.m +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_monitor.m +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_platform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_time.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/cocoa_window.m +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/context.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/egl_context.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/egl_context.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glfw3.pc.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glfw3Config.cmake.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glfw_config.h.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glx_context.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/glx_context.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/init.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/input.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/internal.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/linux_joystick.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/linux_joystick.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/mappings.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/mappings.h.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/monitor.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/nsgl_context.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/nsgl_context.m +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_init.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_joystick.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_joystick.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_monitor.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_platform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/null_window.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/osmesa_context.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/osmesa_context.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/posix_thread.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/posix_thread.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/posix_time.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/posix_time.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/vulkan.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wgl_context.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wgl_context.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_init.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_joystick.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_joystick.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_monitor.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_platform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_thread.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_time.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/win32_window.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/window.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wl_init.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wl_monitor.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wl_platform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/wl_window.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/x11_init.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/x11_monitor.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/x11_platform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/x11_window.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/xkb_unicode.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/src/xkb_unicode.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/clipboard.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/cursor.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/empty.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/events.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/gamma.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/glfwinfo.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/icon.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/iconify.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/inputlag.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/joysticks.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/monitors.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/msaa.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/opacity.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/reopen.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/tearing.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/threads.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/timeout.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/title.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/triangle-vulkan.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glfw/tests/windows.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/.github/workflows/ci.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/.github/workflows/make_light_release.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/.github/workflows/make_release.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/.gitignore +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/cmake/cmake_uninstall.cmake.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/copying.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00002.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00002_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00005_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00008_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00011_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00014_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00017_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00020_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00023_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00026_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00029_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00032_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00035_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00038_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00041.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00041_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00044.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00044_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00047.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00047_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00050.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00050_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00053.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00053_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00056.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00056_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00059.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00059_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00062.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00062_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00065.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00065_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00068.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00068_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00071.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00071_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00074.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00074_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00077.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00077_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00080.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00080_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00083.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00083_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00086_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00089.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00089_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00092.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00092_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00095.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00095_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00098.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00098_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00101.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00101_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00104.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00104_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00107.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00107_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00110.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00110_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00113.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00113_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00116.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00116_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00119.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00119_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00122.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00122_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00125.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00125_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00128.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00128_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00131.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00131_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00134.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00134_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00137.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00137_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00140.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00140_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00143.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00143_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00146.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00146_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00149.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00149_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00152.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00152_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00155.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00155_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00158.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00158_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00161.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00161_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00164.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00164_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00167.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00167_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00170.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00170_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00173.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00173_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00176.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00176_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00179.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00179_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00182.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00182_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00185.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00185_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00188_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00191.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00191_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00194.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00194_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00197.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00197_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00200.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00200_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00203.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00203_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00206.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00206_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00209.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00209_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00212.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00212_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00215.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00215_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00218.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00218_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00221.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00221_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00224.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00224_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00227.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00227_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00230.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00230_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00233.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00233_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00236_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00239.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00239_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00242.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00242_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00245.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00245_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00248.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00248_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00251.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00251_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00254.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00254_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00260.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00260_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00263.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00263_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00269.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00269_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00272.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00272_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00275.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00275_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00278.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00278_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00281.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00281_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00284.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00284_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00287.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00287_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00290.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00290_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00293.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00293_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00296.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00296_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00299.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00299_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00302_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00305.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00305_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00308.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00308_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00311.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00311_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00314.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00314_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00317.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00317_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00320.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00320_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00323.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00323_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00326.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00326_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00329.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00329_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00332.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00332_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00335.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00335_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00338.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00338_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00341.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00341_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00344.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00344_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00347.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00347_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00350.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00350_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00353.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00353_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00356.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00356_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00359.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00359_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00362.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00362_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00365.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00365_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00368.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00368_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00374.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00374_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00377.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00377_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00380.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00380_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00383.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00383_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00386.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00386_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00389.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00389_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00392.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00392_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00395.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00395_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00398.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00398_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00401.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00401_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00404.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00404_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00407.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00407_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00410.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00410_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00413.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00413_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00416.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00416_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00419.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00419_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00422.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00422_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00425.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00425_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00428.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00428_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00431.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00431_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00434.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00434_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00437.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00437_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00440.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00440_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00443.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00443_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00446.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00446_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00449.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00449_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00452.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00452_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00455.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00455_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00458.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00458_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00461.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00461_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00464.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00464_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00467.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00467_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00470.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00470_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00473.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00473_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00476.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00476_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00479.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00479_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00482.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00482_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00485.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00485_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00488.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00488_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00491.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00491_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00494.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00494_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00497.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00497_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00500.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00500_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00503.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00503_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00506.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00506_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00509.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00509_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00512.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00512_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00515.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00515_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00518.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00518_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00521_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00524.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00524_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00527_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00530.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00530_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00536.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00536_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00539.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00539_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00542.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00542_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00545.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00545_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00548.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00548_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00551.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00551_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00554.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00554_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00560.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00560_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00563.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00563_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00566.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00566_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00572.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00572_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00575.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00575_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00578.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00578_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00581.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00581_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00584.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00584_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00587.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00587_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00590.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00590_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00593.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00593_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00596.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00596_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00599.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00599_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00602.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00602_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00605.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00605_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00608.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00608_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00611.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00611_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00614.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00614_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00617.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00617_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00620.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00620_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00623.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00623_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00626.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00626_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00629.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00629_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00632.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00632_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00635.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00635_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00638.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00638_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00641.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00641_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00644.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00644_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00647.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00647_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00650.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00650_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00653.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00653_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00656.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00656_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00659.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00659_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00662.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00662_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00665.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00665_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00668.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00668_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00671.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00671_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00674.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00674_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00677.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00677_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00680.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00680_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00683.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00683_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00686.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00686_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00689.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00689_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00692.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00692_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00695.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00695_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00698.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00698_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00701.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00701_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00704.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00704_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00707.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00707_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00710.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00710_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00713.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00713_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00716.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00716_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00719.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00719_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00722.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00722_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00725.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00725_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00728.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00728_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00731.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00731_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00734.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00734_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00737.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00737_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00740.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00740_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00743.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00743_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00746.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00746_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00749.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00749_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00752.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00752_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00755.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00755_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00758.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00758_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00761.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00761_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00764.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00764_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00767.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00767_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00770.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00770_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00773.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00773_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00776.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00776_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00779.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00779_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00782.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00782_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00785.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00785_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00788.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00788_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00791.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00791_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00794.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00794_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00797.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00797_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00800_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00803.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00804.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00805.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00806.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00807.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00808.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00809.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00810.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00811.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00812.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00813.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00814.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00815.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00816.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00817.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00818.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00819.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00820.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00821.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00822.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00823.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00824.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00825.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00826.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00827.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00828.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00829.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00830.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00831.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00832.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00833.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00834.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00835.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00836.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00837.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00838.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00839.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00840.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00841.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00842.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00843.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00844.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00845.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00846.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00847.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00848.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00849.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00850.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00851.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00852.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00853.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00854.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00855.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00856.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00857.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00858.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00859.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00860.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00861.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00862.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00863.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00864.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00865.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00866.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00867.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00868.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00869.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00870.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00871.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00872.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00873.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00874.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00875.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00876.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00877.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00878.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00879.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00880.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00881.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00882.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00883.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00884.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00885.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00886.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00887.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00888.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00889.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00890.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00891.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00892.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00893.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00894.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00895.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00896.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00897.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00898.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00899.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00900.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00901.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00902.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00903.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00904.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00905.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00906.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00907.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00908.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00909.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00910.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00911.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00912.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00913.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00914.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00915.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00916.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00917.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00918.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00919.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00920.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00921.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00922.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00923.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00924.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00925.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00926.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00927.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00928.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00929.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00930.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00931.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00932.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00933.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00934.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00935.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00936.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00937.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00938.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00939.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00940.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00941.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00942.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00943.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00944.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00945.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00946.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00947.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00948.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00949.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00950.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00951.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00952.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00953.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00954.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00955.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00956.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00957.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00958.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00959.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00960.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00961.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00962.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00963.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00964.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00965.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00966.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00967.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00968.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00969.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00970.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00971.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00972.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00973.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00974.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00975.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00976.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00977.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00978.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00979.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00980.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00981.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00982.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00983.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00984.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a00985.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01558.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01558_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01561.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01561_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01564.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01564_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01567.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01567_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01570.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01570_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01573.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01573_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01576.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01576_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01579.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01579_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01582.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01582_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01585.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01585_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01588.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01588_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01591.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01591_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01594.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01594_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01597.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01597_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01600.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01600_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01603.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01603_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01606.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/a01606_source.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/arrowdown.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/bc_s.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/bdwn.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/closed.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_382f4fd018b81be8753cb53c0a41a09a.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_50f12b6ceb23d7f6adfb377a1ae8b006.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_628fd60eb37daf5aa9a81e3983c640b7.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_63ed049134a778d525e06b63afc2c979.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_885cc87fac2d91e269af0a5a959fa5f6.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_b11711034def6a4ce452fe9c451dd3d0.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_b171cecbb853a9ee4caace490047c53f.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_c98a9ac98258ab9f831b188d66361a70.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_d9678a6a9012da969e0b059b39347945.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dir_fca33f1b5115d46f42c670590789c0d2.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/doc.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/doxygen.css +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/doxygen.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/dynsections.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/files.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/folderclosed.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/folderopen.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/index.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/jquery.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/logo-mini.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/menu.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/menudata.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/modules.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/nav_f.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/nav_g.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/nav_h.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/open.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_0.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_0.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_1.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_1.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_10.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_10.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_11.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_11.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_12.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_12.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_13.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_13.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_14.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_14.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_15.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_15.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_16.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_16.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_2.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_2.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_3.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_3.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_4.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_4.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_5.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_5.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_6.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_6.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_7.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_7.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_8.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_8.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_9.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_9.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_a.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_a.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_b.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_b.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_c.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_c.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_d.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_d.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_e.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_e.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_f.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/all_f.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/close.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_0.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_0.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_1.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_1.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_10.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_10.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_11.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_11.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_12.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_12.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_13.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_13.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_14.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_14.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_2.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_2.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_3.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_3.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_4.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_4.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_5.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_5.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_6.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_6.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_7.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_7.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_8.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_8.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_9.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_9.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_a.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_a.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_b.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_b.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_c.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_c.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_d.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_d.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_e.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_e.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_f.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/files_f.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_0.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_0.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_1.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_1.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_10.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_10.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_11.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_11.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_12.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_12.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_13.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_13.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_14.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_14.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_15.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_15.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_16.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_16.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_2.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_2.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_3.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_3.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_4.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_4.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_5.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_5.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_6.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_6.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_7.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_7.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_8.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_8.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_9.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_9.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_a.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_a.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_b.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_b.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_c.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_c.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_d.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_d.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_e.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_e.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_f.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/functions_f.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_0.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_0.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_1.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_1.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_2.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_2.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_3.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_3.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_4.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_4.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_5.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_5.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_6.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_6.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_7.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_7.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_8.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_8.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_9.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/groups_9.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/mag_sel.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/nomatches.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/pages_0.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/pages_0.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search.css +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search_l.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search_m.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/search_r.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/searchdata.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_0.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_0.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_1.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_1.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_2.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_2.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_3.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_3.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_4.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_4.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_5.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_5.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_6.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_6.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_7.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_7.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_8.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_8.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_9.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_9.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_a.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_a.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_b.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_b.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_c.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_c.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_d.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_d.js +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/splitbar.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/sync_off.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/sync_on.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tab_a.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tab_b.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tab_h.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tab_s.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/api/tabs.css +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/man.doxy +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/frontpage1.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/frontpage2.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/g-truc.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/logo-mini.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/logo.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin1.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin2.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin3.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin4.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin5.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin6.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex1.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex2.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex3.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-ballrand.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-circularrand.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-diskrand.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-gaussrand.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-linearrand.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/random-sphericalrand.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-cinder.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-glsl4book.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-leosfortune.jpeg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-leosfortune2.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-opencloth1.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-opencloth3.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-outerra1.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-outerra2.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-outerra3.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual/references-outerra4.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/manual.pdf +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/bc_s.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/bdwn.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/closed.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/doc.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/doxygen.css +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/doxygen.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/folderclosed.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/folderopen.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/logo-mini.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/nav_f.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/nav_g.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/nav_h.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/open.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/splitbar.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/sync_off.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/sync_on.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/tab_a.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/tab_b.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/tab_h.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/doc/theme/tab_s.png +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/common.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_features.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_fixes.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_noise.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_swizzle.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_swizzle_func.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/_vectorize.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/compute_common.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/compute_vector_decl.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/compute_vector_relational.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_common.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_common_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_exponential.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_exponential_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_geometric.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_geometric_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_integer.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_integer_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_matrix.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_matrix_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_packing.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_packing_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_trigonometric.inl +0 -0
- /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
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/glm.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/qualifier.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/setup.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_float.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_half.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_half.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_quat.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_quat.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_quat_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/detail/type_vec4_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/exponential.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/_matrix_vectorize.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x2_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x3_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x4_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x2_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x3_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x4_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x2_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x3_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x4_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_integer.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_integer.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x2_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x3_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x4_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x2_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x3_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x4_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x2_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x3_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x4_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_int_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_packing.hpp +0 -0
- /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
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_reciprocal.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_reciprocal.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_uint_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_common.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_common.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double1.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double1_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_double4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float1.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float1_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float2_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float3_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_float4_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int1.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int1_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int2_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int3_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_int4_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_packing.hpp +0 -0
- /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
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_reciprocal.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_reciprocal.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4_sized.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/ext.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/fwd.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/geometric.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/glm.cppm +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/glm.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/color_space.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/color_space.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/constants.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/constants.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/integer.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/integer.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_integer.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/noise.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/noise.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/packing.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/packing.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.inl +0 -0
- /polyscope-2.3.0/src/polyscope_bindings/__init__.pyi → /polyscope-2.5.0/deps/polyscope/deps/glm/glm/gtc/quaternion_simd.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/random.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/random.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/reciprocal.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/round.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/round.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_aligned.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/ulp.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/ulp.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtc/vec1.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/bit.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/bit.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_space.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_space.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/common.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/common.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/easing.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/easing.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/extend.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/extend.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/float_notmalize.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/functions.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/functions.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/hash.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/hash.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/integer.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/integer.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/intersect.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/intersect.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/io.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/io.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/log_base.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/log_base.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/norm.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/norm.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/normal.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/normal.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/number_precision.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/pca.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/pca.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/projection.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/projection.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/range.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/scalar_multiplication.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/spline.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/spline.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/texture.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/texture.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/transform.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/transform.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/transform2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/transform2.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vec_swizzle.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/wrap.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/gtx/wrap.inl +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/integer.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat2x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat2x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat2x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat3x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat3x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat3x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat4x2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat4x3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/mat4x4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/matrix.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/packing.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/common.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/exponential.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/geometric.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/integer.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/matrix.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/neon.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/packing.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/platform.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/trigonometric.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/simd/vector_relational.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/trigonometric.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/vec2.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/vec3.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/vec4.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/glm/vector_relational.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/manual.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/readme.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/bug/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/bug/bug_ms_vec_static.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/cmake/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/cmake/test_find_glm.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_cpp_constexpr.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_cpp_defaulted_ctor.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_aligned_gentypes.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_arch_unknown.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_compiler_unknown.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_ctor_init.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_depth_zero_to_one.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_explicit_ctor.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_inline.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_left_handed.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_platform_unknown.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_pure.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_quat_wxyz.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_size_t_length.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_unrestricted_gentype.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_force_xyzw_only.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_common.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_exponential.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_geometric.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_integer.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_integer_bit_count.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_integer_find_lsb.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_integer_find_msb.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_matrix.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_noise.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_packing.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_swizzle.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_trigonometric.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_func_vector_relational.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx03.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx98.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx_unknown.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_force_size_t_length.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_message.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_platform_unknown.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_setup_precision.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_aligned.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_cast.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_ctor.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_int.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_length.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x2.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x3.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x4.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x2.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x3.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x4.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x2.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x3.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x4.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_vec1.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_vec2.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_vec3.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/core/core_type_vec4.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_clip_space.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_common.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x2_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x3_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x4_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x2_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x3_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x4_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x2_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x3_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x4_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_integer.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_projection.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_relational.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_transform.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x2_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x3_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x4_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x2_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x3_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x4_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x2_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x3_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x4_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_common.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_exponential.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_geometric.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_relational.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_transform.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_trigonometric.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_type.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_common.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_constants.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_int_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_integer.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_packing.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_reciprocal.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_relational.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_uint_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_ulp.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vec1.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_bool1.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_common.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_iec559.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int1_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int2_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int3_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int4_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_integer.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_integer_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_packing.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_reciprocal.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_relational.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint1_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint2_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint3_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint4_sized.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/ext/ext_vector_ulp.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/glm.cppcheck +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_bitfield.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_color_space.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_constants.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_epsilon.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_integer.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_access.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_integer.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_inverse.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_transform.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_noise.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_packing.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_quaternion.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_random.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_reciprocal.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_round.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_aligned.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_precision.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_ptr.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_ulp.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_user_defined_types.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtc/gtc_vec1.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_associated_min_max.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_closest_point.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_encoding.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_space.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_space_YCoCg.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_common.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_compatibility.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_component_wise.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_dual_quaternion.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_easing.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_euler_angle.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_extend.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_extended_min_max.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_extented_min_max.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_exterior_product.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_exponential.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_square_root.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_trigonometry.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_functions.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_gradient_paint.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_handed_coordinate_space.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_hash.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_int_10_10_10_2.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_integer.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_intersect.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_io.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_load.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_log_base.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_cross_product.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_decompose.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_factorisation.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_interpolation.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_major_storage.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_operation.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_query.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_transform_2d.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_mixed_product.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_norm.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_normal.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_normalize_dot.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_optimum_pow.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_orthonormalize.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_pca.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_perpendicular.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_polar_coordinates.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_projection.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_quaternion.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_random.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_range.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_rotate_normalized_axis.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_rotate_vector.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_scalar_multiplication.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_scalar_relational.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_simd_mat4.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_simd_vec4.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_spline.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_string_cast.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_texture.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_type_aligned.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_type_trait.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_vec_swizzle.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_vector_angle.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_vector_query.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/gtx/gtx_wrap.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_div.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_inverse.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_mul.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_mul_vector.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_transpose.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/test/perf/perf_vector_mul_matrix.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/util/autoexp.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/util/autoexp.vc2010.dat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/util/glm.natvis +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/glm/util/usertype.dat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/.gitignore +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/.travis.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/LICENSE +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/happly.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/happly_logo.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/CMakeLists.txt.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/main_test.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf.ply +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_ascii.ply +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_big_endian.ply +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.editorconfig +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.gitattributes +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.github/pull_request_template.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/scheduled.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/static-analysis.yml +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/generate_spv.sh +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.frag +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.vert +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/README.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/imconfig_allegro5.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/main.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/.gitignore +0 -0
- {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
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/build.gradle +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/settings.gradle +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/Info-iOS.plist +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/Info-macOS.plist +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard +0 -0
- {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
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_opengl2/main.mm +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/Makefile +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/main.mm +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/Makefile +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/Makefile +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/main.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/main.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_metal/Makefile +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_metal/main.mm +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/Makefile +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/Makefile +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/Makefile +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/build_win32.bat +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj.filters +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/emscripten/shell_minimal.html +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/COPYING.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3native.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/README.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/imstb_rectpack.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/README.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/README.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/README.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.gdb +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natstepfilter +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natvis +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/DroidSans.ttf +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Karla-Regular.ttf +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyClean.ttf +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyTiny.ttf +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/imgui/imgui/misc/single_file/imgui_single_file.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/json/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/json/LICENSE.MIT +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/json/README.md +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/json/include/nlohmann/json.hpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/stb/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/stb/stb_image.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/stb/stb_image_write.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/deps/stb/stb_impl.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/surface_mesh_io.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/examples/demo-app/surface_mesh_io.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/affine_remapper.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/camera_parameters.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/camera_view.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/color_image_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/color_management.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/color_render_image_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/colors.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/combining_hash_functions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/curve_network.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/curve_network_color_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/curve_network_scalar_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/curve_network_vector_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/depth_render_image_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/disjoint_sets.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/file_helpers.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/floating_quantities.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/floating_quantity_structure.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/fullscreen_artist.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/group.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/image_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/image_quantity_base.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/imgui_config.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/implicit_helpers.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/implicit_helpers.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/internal.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/parameterization_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/pick.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud_color_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud_parameterization_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud_scalar_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/point_cloud_vector_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/quantity.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/ragged_nested_array.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/raw_color_alpha_render_image_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/raw_color_render_image_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/engine.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/managed_buffer.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/material_defs.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/materials.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/gl_engine.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/gl_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/common.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/gizmo_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/grid_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/ground_plane_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/lighting_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/ribbon_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/sphere_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/texture_draw_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/vector_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/opengl/shaders/volume_mesh_shaders.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/shader_builder.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/render/templated_buffers.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/scalar_image_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/scalar_render_image_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/scaled_value.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/simple_triangle_mesh.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/standardize_data_array.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/structure.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/surface_mesh.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/surface_vector_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/transformation_gizmo.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/utilities.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/vector_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_grid.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_grid_scalar_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_mesh.ipp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_mesh_color_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_mesh_scalar_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/volume_mesh_vector_quantity.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/weak_handle.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/include/polyscope/widget.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/file2c/file2cpp.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/format_all_macOS.sh +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/.gitignore +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/bin2vector.c +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/concrete_seamless.jpg +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/image2material.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/imagesrgb2material.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/misc/material_images/render_material.blend +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/color_render_image_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/curve_network_color_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/curve_network_vector_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/depth_render_image_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/disjoint_sets.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/floating_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/fullscreen_artist.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/group.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/internal.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/marching_cubes.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/point_cloud_color_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/point_cloud_parameterization_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/point_cloud_scalar_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/point_cloud_vector_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/raw_color_alpha_render_image_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/raw_color_render_image_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_candy.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_ceramic.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_clay.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_flat.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_font_cousine_regular.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_font_lato_regular.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_jade.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_mud.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_normal.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/bindata_wax.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/bindata/concrete_seamless.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/materials.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/gizmo_shaders.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/ground_plane_shaders.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/ribbon_shaders.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/sphere_shaders.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/texture_draw_shaders.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/vector_shaders.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/opengl/shaders/volume_mesh_shaders.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/render/templated_buffers.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/state.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/surface_vector_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/transformation_gizmo.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/utilities.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/volume_mesh_color_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/volume_mesh_scalar_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/volume_mesh_vector_quantity.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/weak_handle.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/src/widget.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/CMakeLists.txt.in +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/array_adaptors_test.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/combo_test.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/group_test.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/interop_and_serialization_test.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/main_test.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/misc_test.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/polyscope/test/src/volume_grid_test.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/attr.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/chrono.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/common.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/complex.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/detail/typeid.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/eigen/common.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/eigen.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/eval.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/iostream.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/operators.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/options.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/stl.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tests/object.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tests/test_exceptions.h +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tools/FindCatch.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tools/FindEigen3.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/deps/pybind11/tools/JoinPaths.cmake +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/cpp/camera_view.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/cpp/floating_quantities.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/cpp/implicit_helpers.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/cpp/managed_buffer.cpp +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/camera_view.py +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/floating_quantities.py +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/global_floating_quantity_structure.py +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/imgui/__init__.py +0 -0
- {polyscope-2.3.0 → polyscope-2.5.0}/src/polyscope/implicit_helpers.py +0 -0
- {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 .)
|
polyscope-2.5.0/PKG-INFO
ADDED
|
@@ -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
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
44
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
45
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
46
|
+
[](https://pypi.org/project/polyscope/)
|
|
47
|
+
[](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
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
5
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
6
|
+
[](https://github.com/nmwsharp/polyscope-py/actions)
|
|
7
|
+
[](https://pypi.org/project/polyscope/)
|
|
8
|
+
[](https://anaconda.org/conda-forge/polyscope)
|
|
9
|
+
|
|
10
|
+
This library is a python wrapper and deployment system. The core library lives at https://github.com/nmwsharp/polyscope. See documentation at https://polyscope.run/py.
|
|
11
|
+
|
|
12
|
+
To contribute, check out the [instructions here](https://polyscope.run/about/contributing/).
|
|
13
|
+
|
|
14
|
+
### Installation
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
python -m pip install polyscope
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
or
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
conda install -c conda-forge polyscope
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
polyscope-py should work out-of-the-box on any combination of Python 3.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
|