polyscope 2.2.0__tar.gz → 2.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2773) hide show
  1. {polyscope-2.2.0/src/polyscope.egg-info → polyscope-2.3.0}/PKG-INFO +1 -1
  2. {polyscope-2.2.0 → polyscope-2.3.0}/README.md +7 -5
  3. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/options.h +2 -0
  4. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/point_cloud.h +14 -0
  5. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/quantity.ipp +1 -3
  6. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/sphere_shaders.h +1 -0
  7. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/surface_mesh_shaders.h +1 -0
  8. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/surface_mesh.h +15 -0
  9. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/surface_scalar_quantity.h +12 -5
  10. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/types.h +1 -0
  11. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/file_helpers.cpp +4 -3
  12. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/options.cpp +2 -0
  13. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/point_cloud.cpp +63 -3
  14. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/ground_plane.cpp +55 -2
  15. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/initialize_backend.cpp +2 -2
  16. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/mock_opengl/mock_gl_engine.cpp +2 -0
  17. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/gl_engine.cpp +2 -0
  18. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/lighting_shaders.cpp +2 -2
  19. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/sphere_shaders.cpp +31 -0
  20. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/surface_mesh_shaders.cpp +24 -0
  21. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/surface_mesh.cpp +69 -0
  22. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/surface_scalar_quantity.cpp +22 -0
  23. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/basics_test.cpp +7 -0
  24. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/point_cloud_test.cpp +37 -0
  25. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/surface_mesh_test.cpp +40 -0
  26. {polyscope-2.2.0 → polyscope-2.3.0}/setup.py +1 -1
  27. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/core.cpp +7 -4
  28. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/imgui.cpp +153 -24
  29. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/point_cloud.cpp +5 -3
  30. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/surface_mesh.cpp +9 -0
  31. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/core.py +85 -3
  32. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/point_cloud.py +7 -1
  33. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/surface_mesh.py +10 -1
  34. {polyscope-2.2.0 → polyscope-2.3.0/src/polyscope.egg-info}/PKG-INFO +1 -1
  35. {polyscope-2.2.0 → polyscope-2.3.0}/CMakeLists.txt +0 -0
  36. {polyscope-2.2.0 → polyscope-2.3.0}/LICENSE +0 -0
  37. {polyscope-2.2.0 → polyscope-2.3.0}/MANIFEST.in +0 -0
  38. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/COPYING.BSD +0 -0
  39. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/COPYING.GPL +0 -0
  40. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/COPYING.LGPL +0 -0
  41. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/COPYING.MINPACK +0 -0
  42. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/COPYING.MPL2 +0 -0
  43. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/COPYING.README +0 -0
  44. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Cholesky +0 -0
  45. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/CholmodSupport +0 -0
  46. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Core +0 -0
  47. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Dense +0 -0
  48. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Eigen +0 -0
  49. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Eigenvalues +0 -0
  50. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Geometry +0 -0
  51. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Householder +0 -0
  52. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/IterativeLinearSolvers +0 -0
  53. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Jacobi +0 -0
  54. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/KLUSupport +0 -0
  55. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/LU +0 -0
  56. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/MetisSupport +0 -0
  57. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/OrderingMethods +0 -0
  58. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/PaStiXSupport +0 -0
  59. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/PardisoSupport +0 -0
  60. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/QR +0 -0
  61. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/QtAlignedMalloc +0 -0
  62. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/SPQRSupport +0 -0
  63. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/SVD +0 -0
  64. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/Sparse +0 -0
  65. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/SparseCholesky +0 -0
  66. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/SparseCore +0 -0
  67. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/SparseLU +0 -0
  68. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/SparseQR +0 -0
  69. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/StdDeque +0 -0
  70. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/StdList +0 -0
  71. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/StdVector +0 -0
  72. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/SuperLUSupport +0 -0
  73. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/UmfPackSupport +0 -0
  74. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Cholesky/LDLT.h +0 -0
  75. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Cholesky/LLT.h +0 -0
  76. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
  77. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
  78. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/ArithmeticSequence.h +0 -0
  79. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Array.h +0 -0
  80. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/ArrayBase.h +0 -0
  81. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/ArrayWrapper.h +0 -0
  82. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Assign.h +0 -0
  83. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/AssignEvaluator.h +0 -0
  84. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Assign_MKL.h +0 -0
  85. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/BandMatrix.h +0 -0
  86. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Block.h +0 -0
  87. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/BooleanRedux.h +0 -0
  88. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/CommaInitializer.h +0 -0
  89. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/ConditionEstimator.h +0 -0
  90. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/CoreEvaluators.h +0 -0
  91. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/CoreIterators.h +0 -0
  92. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/CwiseBinaryOp.h +0 -0
  93. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/CwiseNullaryOp.h +0 -0
  94. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/CwiseTernaryOp.h +0 -0
  95. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/CwiseUnaryOp.h +0 -0
  96. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/CwiseUnaryView.h +0 -0
  97. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/DenseBase.h +0 -0
  98. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/DenseCoeffsBase.h +0 -0
  99. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/DenseStorage.h +0 -0
  100. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Diagonal.h +0 -0
  101. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/DiagonalMatrix.h +0 -0
  102. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/DiagonalProduct.h +0 -0
  103. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Dot.h +0 -0
  104. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/EigenBase.h +0 -0
  105. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/ForceAlignedAccess.h +0 -0
  106. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Fuzzy.h +0 -0
  107. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/GeneralProduct.h +0 -0
  108. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/GenericPacketMath.h +0 -0
  109. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/GlobalFunctions.h +0 -0
  110. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/IO.h +0 -0
  111. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/IndexedView.h +0 -0
  112. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Inverse.h +0 -0
  113. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Map.h +0 -0
  114. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/MapBase.h +0 -0
  115. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/MathFunctions.h +0 -0
  116. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/MathFunctionsImpl.h +0 -0
  117. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Matrix.h +0 -0
  118. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/MatrixBase.h +0 -0
  119. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/NestByValue.h +0 -0
  120. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/NoAlias.h +0 -0
  121. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/NumTraits.h +0 -0
  122. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
  123. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/PermutationMatrix.h +0 -0
  124. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/PlainObjectBase.h +0 -0
  125. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Product.h +0 -0
  126. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/ProductEvaluators.h +0 -0
  127. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Random.h +0 -0
  128. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Redux.h +0 -0
  129. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Ref.h +0 -0
  130. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Replicate.h +0 -0
  131. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Reshaped.h +0 -0
  132. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/ReturnByValue.h +0 -0
  133. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Reverse.h +0 -0
  134. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Select.h +0 -0
  135. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/SelfAdjointView.h +0 -0
  136. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
  137. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Solve.h +0 -0
  138. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/SolveTriangular.h +0 -0
  139. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/SolverBase.h +0 -0
  140. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/StableNorm.h +0 -0
  141. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/StlIterators.h +0 -0
  142. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Stride.h +0 -0
  143. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Swap.h +0 -0
  144. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Transpose.h +0 -0
  145. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Transpositions.h +0 -0
  146. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/TriangularMatrix.h +0 -0
  147. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/VectorBlock.h +0 -0
  148. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/VectorwiseOp.h +0 -0
  149. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/Visitor.h +0 -0
  150. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AVX/Complex.h +0 -0
  151. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
  152. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
  153. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
  154. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
  155. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
  156. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
  157. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
  158. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
  159. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
  160. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
  161. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
  162. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
  163. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
  164. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
  165. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/Default/Half.h +0 -0
  166. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/Default/Settings.h +0 -0
  167. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
  168. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
  169. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
  170. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
  171. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
  172. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/MSA/Complex.h +0 -0
  173. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
  174. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
  175. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/NEON/Complex.h +0 -0
  176. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
  177. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
  178. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
  179. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SSE/Complex.h +0 -0
  180. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
  181. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
  182. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
  183. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
  184. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
  185. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
  186. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
  187. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
  188. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
  189. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
  190. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
  191. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
  192. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
  193. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
  194. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/functors/StlFunctors.h +0 -0
  195. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
  196. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
  197. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
  198. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
  199. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
  200. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
  201. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
  202. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
  203. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
  204. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/Parallelizer.h +0 -0
  205. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
  206. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
  207. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
  208. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
  209. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
  210. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
  211. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
  212. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
  213. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
  214. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
  215. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
  216. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
  217. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
  218. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/BlasUtil.h +0 -0
  219. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
  220. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/Constants.h +0 -0
  221. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
  222. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
  223. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
  224. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/IntegralConstant.h +0 -0
  225. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/MKL_support.h +0 -0
  226. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/Macros.h +0 -0
  227. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/Memory.h +0 -0
  228. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/Meta.h +0 -0
  229. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/NonMPL2.h +0 -0
  230. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
  231. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/ReshapedHelper.h +0 -0
  232. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/StaticAssert.h +0 -0
  233. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/SymbolicIndex.h +0 -0
  234. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Core/util/XprHelper.h +0 -0
  235. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
  236. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
  237. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
  238. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
  239. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
  240. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
  241. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
  242. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
  243. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/RealQZ.h +0 -0
  244. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur.h +0 -0
  245. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
  246. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
  247. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
  248. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
  249. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/AlignedBox.h +0 -0
  250. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/AngleAxis.h +0 -0
  251. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/EulerAngles.h +0 -0
  252. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/Homogeneous.h +0 -0
  253. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/Hyperplane.h +0 -0
  254. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/OrthoMethods.h +0 -0
  255. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/ParametrizedLine.h +0 -0
  256. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/Quaternion.h +0 -0
  257. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/Rotation2D.h +0 -0
  258. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/RotationBase.h +0 -0
  259. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/Scaling.h +0 -0
  260. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/Transform.h +0 -0
  261. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/Translation.h +0 -0
  262. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/Umeyama.h +0 -0
  263. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +0 -0
  264. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Householder/BlockHouseholder.h +0 -0
  265. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Householder/Householder.h +0 -0
  266. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Householder/HouseholderSequence.h +0 -0
  267. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
  268. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
  269. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
  270. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
  271. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
  272. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
  273. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
  274. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
  275. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/Jacobi/Jacobi.h +0 -0
  276. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/KLUSupport/KLUSupport.h +0 -0
  277. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/LU/Determinant.h +0 -0
  278. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/LU/FullPivLU.h +0 -0
  279. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/LU/InverseImpl.h +0 -0
  280. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/LU/PartialPivLU.h +0 -0
  281. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
  282. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/LU/arch/Inverse_SSE.h +0 -0
  283. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/MetisSupport/MetisSupport.h +0 -0
  284. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/OrderingMethods/Amd.h +0 -0
  285. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
  286. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/OrderingMethods/Ordering.h +0 -0
  287. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
  288. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
  289. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
  290. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
  291. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
  292. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
  293. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/QR/HouseholderQR.h +0 -0
  294. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
  295. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
  296. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SVD/BDCSVD.h +0 -0
  297. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SVD/JacobiSVD.h +0 -0
  298. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
  299. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SVD/SVDBase.h +0 -0
  300. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
  301. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
  302. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
  303. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/AmbiVector.h +0 -0
  304. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/CompressedStorage.h +0 -0
  305. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
  306. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
  307. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseAssign.h +0 -0
  308. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseBlock.h +0 -0
  309. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseColEtree.h +0 -0
  310. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
  311. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
  312. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
  313. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
  314. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
  315. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseDot.h +0 -0
  316. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
  317. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseMap.h +0 -0
  318. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrix.h +0 -0
  319. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
  320. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparsePermutation.h +0 -0
  321. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseProduct.h +0 -0
  322. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseRedux.h +0 -0
  323. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseRef.h +0 -0
  324. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
  325. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
  326. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
  327. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseTranspose.h +0 -0
  328. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
  329. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseUtil.h +0 -0
  330. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseVector.h +0 -0
  331. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/SparseView.h +0 -0
  332. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseCore/TriangularSolver.h +0 -0
  333. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU.h +0 -0
  334. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
  335. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
  336. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
  337. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
  338. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
  339. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
  340. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
  341. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
  342. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
  343. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
  344. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
  345. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
  346. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
  347. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
  348. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
  349. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
  350. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SparseQR/SparseQR.h +0 -0
  351. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/StlSupport/StdDeque.h +0 -0
  352. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/StlSupport/StdList.h +0 -0
  353. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/StlSupport/StdVector.h +0 -0
  354. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/StlSupport/details.h +0 -0
  355. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
  356. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
  357. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/misc/Image.h +0 -0
  358. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/misc/Kernel.h +0 -0
  359. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/misc/RealSvd2x2.h +0 -0
  360. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/misc/blas.h +0 -0
  361. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/misc/lapack.h +0 -0
  362. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/misc/lapacke.h +0 -0
  363. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/misc/lapacke_mangling.h +0 -0
  364. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
  365. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
  366. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/BlockMethods.h +0 -0
  367. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
  368. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
  369. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/IndexedViewMethods.h +0 -0
  370. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
  371. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
  372. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/Eigen/src/plugins/ReshapedMethods.h +0 -0
  373. {polyscope-2.2.0 → polyscope-2.3.0}/deps/eigen/README.md +0 -0
  374. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/.clang-format +0 -0
  375. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/.git +0 -0
  376. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/.github/workflows/linux.yml +0 -0
  377. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/.github/workflows/macos.yml +0 -0
  378. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/.github/workflows/windows.yml +0 -0
  379. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/.gitignore +0 -0
  380. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/.gitmodules +0 -0
  381. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/CMakeLists.txt +0 -0
  382. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/LICENSE +0 -0
  383. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/README.md +0 -0
  384. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/CMakeLists.txt +0 -0
  385. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/MarchingCubeCpp/CMakeLists.txt +0 -0
  386. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/MarchingCubeCpp/README.md +0 -0
  387. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/MarchingCubeCpp/include/MarchingCube/MC.h +0 -0
  388. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/args/LICENSE +0 -0
  389. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/args/README.md +0 -0
  390. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/args/args/args.hxx +0 -0
  391. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glad/CMakeLists.txt +0 -0
  392. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glad/LICENSE +0 -0
  393. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glad/include/KHR/khrplatform.h +0 -0
  394. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glad/include/glad/glad.h +0 -0
  395. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glad/src/CMakeLists.txt +0 -0
  396. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glad/src/glad.c +0 -0
  397. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/.appveyor.yml +0 -0
  398. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/.git +0 -0
  399. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/.gitattributes +0 -0
  400. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/.github/CODEOWNERS +0 -0
  401. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/.github/workflows/build.yml +0 -0
  402. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/.gitignore +0 -0
  403. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/.mailmap +0 -0
  404. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/GenerateMappings.cmake +0 -0
  405. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/MacOSXBundleInfo.plist.in +0 -0
  406. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32-clang.cmake +0 -0
  407. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/i686-w64-mingw32.cmake +0 -0
  408. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/modules/FindEpollShim.cmake +0 -0
  409. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/modules/FindOSMesa.cmake +0 -0
  410. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/modules/FindWaylandProtocols.cmake +0 -0
  411. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/modules/FindXKBCommon.cmake +0 -0
  412. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32-clang.cmake +0 -0
  413. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMake/x86_64-w64-mingw32.cmake +0 -0
  414. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CMakeLists.txt +0 -0
  415. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/CONTRIBUTORS.md +0 -0
  416. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/LICENSE.md +0 -0
  417. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/README.md +0 -0
  418. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/cmake_uninstall.cmake.in +0 -0
  419. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/getopt.c +0 -0
  420. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/getopt.h +0 -0
  421. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/glad/gl.h +0 -0
  422. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/glad/khrplatform.h +0 -0
  423. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/glad/vk_platform.h +0 -0
  424. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/glad/vulkan.h +0 -0
  425. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/glad_gl.c +0 -0
  426. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/glad_vulkan.c +0 -0
  427. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/linmath.h +0 -0
  428. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/mingw/_mingw_dxhelper.h +0 -0
  429. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/mingw/dinput.h +0 -0
  430. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/mingw/xinput.h +0 -0
  431. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/nuklear.h +0 -0
  432. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/nuklear_glfw_gl2.h +0 -0
  433. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/stb_image_write.h +0 -0
  434. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/tinycthread.c +0 -0
  435. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/tinycthread.h +0 -0
  436. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/deps/vs2008/stdint.h +0 -0
  437. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/CMakeLists.txt +0 -0
  438. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/CONTRIBUTING.md +0 -0
  439. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/Doxyfile.in +0 -0
  440. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/DoxygenLayout.xml +0 -0
  441. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/SUPPORT.md +0 -0
  442. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/build.dox +0 -0
  443. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/compat.dox +0 -0
  444. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/compile.dox +0 -0
  445. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/context.dox +0 -0
  446. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/extra.css +0 -0
  447. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/extra.css.map +0 -0
  448. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/extra.scss +0 -0
  449. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/footer.html +0 -0
  450. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/header.html +0 -0
  451. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/input.dox +0 -0
  452. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/internal.dox +0 -0
  453. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/intro.dox +0 -0
  454. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/main.dox +0 -0
  455. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/monitor.dox +0 -0
  456. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/moving.dox +0 -0
  457. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/news.dox +0 -0
  458. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/quick.dox +0 -0
  459. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/spaces.svg +0 -0
  460. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/vulkan.dox +0 -0
  461. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/docs/window.dox +0 -0
  462. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/CMakeLists.txt +0 -0
  463. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/boing.c +0 -0
  464. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/gears.c +0 -0
  465. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/glfw.icns +0 -0
  466. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/glfw.ico +0 -0
  467. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/glfw.rc +0 -0
  468. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/heightmap.c +0 -0
  469. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/offscreen.c +0 -0
  470. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/particles.c +0 -0
  471. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/sharing.c +0 -0
  472. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/simple.c +0 -0
  473. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/splitview.c +0 -0
  474. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/examples/wave.c +0 -0
  475. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/include/GLFW/glfw3.h +0 -0
  476. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/include/GLFW/glfw3native.h +0 -0
  477. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/CMakeLists.txt +0 -0
  478. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/cocoa_init.m +0 -0
  479. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/cocoa_joystick.h +0 -0
  480. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/cocoa_joystick.m +0 -0
  481. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/cocoa_monitor.m +0 -0
  482. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/cocoa_platform.h +0 -0
  483. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/cocoa_time.c +0 -0
  484. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/cocoa_window.m +0 -0
  485. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/context.c +0 -0
  486. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/egl_context.c +0 -0
  487. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/egl_context.h +0 -0
  488. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/glfw3.pc.in +0 -0
  489. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/glfw3Config.cmake.in +0 -0
  490. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/glfw_config.h.in +0 -0
  491. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/glx_context.c +0 -0
  492. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/glx_context.h +0 -0
  493. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/init.c +0 -0
  494. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/input.c +0 -0
  495. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/internal.h +0 -0
  496. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/linux_joystick.c +0 -0
  497. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/linux_joystick.h +0 -0
  498. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/mappings.h +0 -0
  499. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/mappings.h.in +0 -0
  500. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/monitor.c +0 -0
  501. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/nsgl_context.h +0 -0
  502. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/nsgl_context.m +0 -0
  503. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/null_init.c +0 -0
  504. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/null_joystick.c +0 -0
  505. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/null_joystick.h +0 -0
  506. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/null_monitor.c +0 -0
  507. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/null_platform.h +0 -0
  508. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/null_window.c +0 -0
  509. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/osmesa_context.c +0 -0
  510. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/osmesa_context.h +0 -0
  511. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/posix_thread.c +0 -0
  512. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/posix_thread.h +0 -0
  513. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/posix_time.c +0 -0
  514. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/posix_time.h +0 -0
  515. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/vulkan.c +0 -0
  516. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/wgl_context.c +0 -0
  517. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/wgl_context.h +0 -0
  518. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/win32_init.c +0 -0
  519. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/win32_joystick.c +0 -0
  520. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/win32_joystick.h +0 -0
  521. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/win32_monitor.c +0 -0
  522. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/win32_platform.h +0 -0
  523. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/win32_thread.c +0 -0
  524. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/win32_time.c +0 -0
  525. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/win32_window.c +0 -0
  526. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/window.c +0 -0
  527. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/wl_init.c +0 -0
  528. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/wl_monitor.c +0 -0
  529. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/wl_platform.h +0 -0
  530. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/wl_window.c +0 -0
  531. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/x11_init.c +0 -0
  532. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/x11_monitor.c +0 -0
  533. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/x11_platform.h +0 -0
  534. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/x11_window.c +0 -0
  535. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/xkb_unicode.c +0 -0
  536. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/src/xkb_unicode.h +0 -0
  537. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/CMakeLists.txt +0 -0
  538. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/clipboard.c +0 -0
  539. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/cursor.c +0 -0
  540. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/empty.c +0 -0
  541. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/events.c +0 -0
  542. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/gamma.c +0 -0
  543. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/glfwinfo.c +0 -0
  544. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/icon.c +0 -0
  545. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/iconify.c +0 -0
  546. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/inputlag.c +0 -0
  547. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/joysticks.c +0 -0
  548. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/monitors.c +0 -0
  549. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/msaa.c +0 -0
  550. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/opacity.c +0 -0
  551. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/reopen.c +0 -0
  552. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/tearing.c +0 -0
  553. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/threads.c +0 -0
  554. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/timeout.c +0 -0
  555. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/title.c +0 -0
  556. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/triangle-vulkan.c +0 -0
  557. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glfw/tests/windows.c +0 -0
  558. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/.git +0 -0
  559. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/.github/workflows/ci.yml +0 -0
  560. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/.github/workflows/make_light_release.yml +0 -0
  561. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/.github/workflows/make_release.yml +0 -0
  562. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/.gitignore +0 -0
  563. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/CMakeLists.txt +0 -0
  564. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/cmake/cmake_uninstall.cmake.in +0 -0
  565. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/copying.txt +0 -0
  566. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00002.html +0 -0
  567. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00002_source.html +0 -0
  568. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00005_source.html +0 -0
  569. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00008_source.html +0 -0
  570. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00011_source.html +0 -0
  571. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00014_source.html +0 -0
  572. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00017_source.html +0 -0
  573. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00020_source.html +0 -0
  574. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00023_source.html +0 -0
  575. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00026_source.html +0 -0
  576. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00029_source.html +0 -0
  577. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00032_source.html +0 -0
  578. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00035_source.html +0 -0
  579. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00038_source.html +0 -0
  580. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00041.html +0 -0
  581. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00041_source.html +0 -0
  582. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00044.html +0 -0
  583. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00044_source.html +0 -0
  584. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00047.html +0 -0
  585. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00047_source.html +0 -0
  586. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00050.html +0 -0
  587. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00050_source.html +0 -0
  588. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00053.html +0 -0
  589. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00053_source.html +0 -0
  590. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00056.html +0 -0
  591. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00056_source.html +0 -0
  592. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00059.html +0 -0
  593. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00059_source.html +0 -0
  594. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00062.html +0 -0
  595. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00062_source.html +0 -0
  596. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00065.html +0 -0
  597. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00065_source.html +0 -0
  598. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00068.html +0 -0
  599. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00068_source.html +0 -0
  600. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00071.html +0 -0
  601. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00071_source.html +0 -0
  602. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00074.html +0 -0
  603. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00074_source.html +0 -0
  604. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00077.html +0 -0
  605. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00077_source.html +0 -0
  606. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00080.html +0 -0
  607. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00080_source.html +0 -0
  608. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00083.html +0 -0
  609. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00083_source.html +0 -0
  610. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00086_source.html +0 -0
  611. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00089.html +0 -0
  612. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00089_source.html +0 -0
  613. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00092.html +0 -0
  614. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00092_source.html +0 -0
  615. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00095.html +0 -0
  616. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00095_source.html +0 -0
  617. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00098.html +0 -0
  618. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00098_source.html +0 -0
  619. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00101.html +0 -0
  620. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00101_source.html +0 -0
  621. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00104.html +0 -0
  622. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00104_source.html +0 -0
  623. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00107.html +0 -0
  624. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00107_source.html +0 -0
  625. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00110.html +0 -0
  626. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00110_source.html +0 -0
  627. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00113.html +0 -0
  628. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00113_source.html +0 -0
  629. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00116.html +0 -0
  630. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00116_source.html +0 -0
  631. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00119.html +0 -0
  632. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00119_source.html +0 -0
  633. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00122.html +0 -0
  634. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00122_source.html +0 -0
  635. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00125.html +0 -0
  636. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00125_source.html +0 -0
  637. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00128.html +0 -0
  638. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00128_source.html +0 -0
  639. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00131.html +0 -0
  640. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00131_source.html +0 -0
  641. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00134.html +0 -0
  642. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00134_source.html +0 -0
  643. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00137.html +0 -0
  644. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00137_source.html +0 -0
  645. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00140.html +0 -0
  646. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00140_source.html +0 -0
  647. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00143.html +0 -0
  648. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00143_source.html +0 -0
  649. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00146.html +0 -0
  650. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00146_source.html +0 -0
  651. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00149.html +0 -0
  652. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00149_source.html +0 -0
  653. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00152.html +0 -0
  654. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00152_source.html +0 -0
  655. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00155.html +0 -0
  656. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00155_source.html +0 -0
  657. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00158.html +0 -0
  658. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00158_source.html +0 -0
  659. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00161.html +0 -0
  660. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00161_source.html +0 -0
  661. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00164.html +0 -0
  662. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00164_source.html +0 -0
  663. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00167.html +0 -0
  664. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00167_source.html +0 -0
  665. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00170.html +0 -0
  666. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00170_source.html +0 -0
  667. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00173.html +0 -0
  668. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00173_source.html +0 -0
  669. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00176.html +0 -0
  670. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00176_source.html +0 -0
  671. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00179.html +0 -0
  672. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00179_source.html +0 -0
  673. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00182.html +0 -0
  674. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00182_source.html +0 -0
  675. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00185.html +0 -0
  676. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00185_source.html +0 -0
  677. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00188_source.html +0 -0
  678. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00191.html +0 -0
  679. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00191_source.html +0 -0
  680. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00194.html +0 -0
  681. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00194_source.html +0 -0
  682. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00197.html +0 -0
  683. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00197_source.html +0 -0
  684. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00200.html +0 -0
  685. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00200_source.html +0 -0
  686. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00203.html +0 -0
  687. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00203_source.html +0 -0
  688. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00206.html +0 -0
  689. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00206_source.html +0 -0
  690. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00209.html +0 -0
  691. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00209_source.html +0 -0
  692. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00212.html +0 -0
  693. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00212_source.html +0 -0
  694. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00215.html +0 -0
  695. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00215_source.html +0 -0
  696. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00218.html +0 -0
  697. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00218_source.html +0 -0
  698. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00221.html +0 -0
  699. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00221_source.html +0 -0
  700. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00224.html +0 -0
  701. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00224_source.html +0 -0
  702. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00227.html +0 -0
  703. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00227_source.html +0 -0
  704. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00230.html +0 -0
  705. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00230_source.html +0 -0
  706. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00233.html +0 -0
  707. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00233_source.html +0 -0
  708. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00236_source.html +0 -0
  709. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00239.html +0 -0
  710. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00239_source.html +0 -0
  711. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00242.html +0 -0
  712. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00242_source.html +0 -0
  713. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00245.html +0 -0
  714. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00245_source.html +0 -0
  715. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00248.html +0 -0
  716. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00248_source.html +0 -0
  717. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00251.html +0 -0
  718. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00251_source.html +0 -0
  719. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00254.html +0 -0
  720. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00254_source.html +0 -0
  721. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00260.html +0 -0
  722. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00260_source.html +0 -0
  723. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00263.html +0 -0
  724. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00263_source.html +0 -0
  725. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00269.html +0 -0
  726. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00269_source.html +0 -0
  727. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00272.html +0 -0
  728. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00272_source.html +0 -0
  729. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00275.html +0 -0
  730. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00275_source.html +0 -0
  731. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00278.html +0 -0
  732. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00278_source.html +0 -0
  733. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00281.html +0 -0
  734. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00281_source.html +0 -0
  735. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00284.html +0 -0
  736. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00284_source.html +0 -0
  737. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00287.html +0 -0
  738. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00287_source.html +0 -0
  739. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00290.html +0 -0
  740. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00290_source.html +0 -0
  741. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00293.html +0 -0
  742. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00293_source.html +0 -0
  743. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00296.html +0 -0
  744. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00296_source.html +0 -0
  745. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00299.html +0 -0
  746. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00299_source.html +0 -0
  747. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00302_source.html +0 -0
  748. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00305.html +0 -0
  749. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00305_source.html +0 -0
  750. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00308.html +0 -0
  751. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00308_source.html +0 -0
  752. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00311.html +0 -0
  753. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00311_source.html +0 -0
  754. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00314.html +0 -0
  755. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00314_source.html +0 -0
  756. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00317.html +0 -0
  757. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00317_source.html +0 -0
  758. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00320.html +0 -0
  759. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00320_source.html +0 -0
  760. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00323.html +0 -0
  761. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00323_source.html +0 -0
  762. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00326.html +0 -0
  763. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00326_source.html +0 -0
  764. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00329.html +0 -0
  765. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00329_source.html +0 -0
  766. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00332.html +0 -0
  767. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00332_source.html +0 -0
  768. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00335.html +0 -0
  769. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00335_source.html +0 -0
  770. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00338.html +0 -0
  771. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00338_source.html +0 -0
  772. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00341.html +0 -0
  773. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00341_source.html +0 -0
  774. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00344.html +0 -0
  775. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00344_source.html +0 -0
  776. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00347.html +0 -0
  777. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00347_source.html +0 -0
  778. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00350.html +0 -0
  779. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00350_source.html +0 -0
  780. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00353.html +0 -0
  781. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00353_source.html +0 -0
  782. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00356.html +0 -0
  783. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00356_source.html +0 -0
  784. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00359.html +0 -0
  785. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00359_source.html +0 -0
  786. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00362.html +0 -0
  787. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00362_source.html +0 -0
  788. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00365.html +0 -0
  789. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00365_source.html +0 -0
  790. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00368.html +0 -0
  791. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00368_source.html +0 -0
  792. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00374.html +0 -0
  793. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00374_source.html +0 -0
  794. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00377.html +0 -0
  795. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00377_source.html +0 -0
  796. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00380.html +0 -0
  797. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00380_source.html +0 -0
  798. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00383.html +0 -0
  799. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00383_source.html +0 -0
  800. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00386.html +0 -0
  801. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00386_source.html +0 -0
  802. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00389.html +0 -0
  803. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00389_source.html +0 -0
  804. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00392.html +0 -0
  805. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00392_source.html +0 -0
  806. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00395.html +0 -0
  807. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00395_source.html +0 -0
  808. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00398.html +0 -0
  809. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00398_source.html +0 -0
  810. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00401.html +0 -0
  811. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00401_source.html +0 -0
  812. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00404.html +0 -0
  813. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00404_source.html +0 -0
  814. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00407.html +0 -0
  815. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00407_source.html +0 -0
  816. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00410.html +0 -0
  817. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00410_source.html +0 -0
  818. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00413.html +0 -0
  819. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00413_source.html +0 -0
  820. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00416.html +0 -0
  821. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00416_source.html +0 -0
  822. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00419.html +0 -0
  823. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00419_source.html +0 -0
  824. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00422.html +0 -0
  825. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00422_source.html +0 -0
  826. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00425.html +0 -0
  827. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00425_source.html +0 -0
  828. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00428.html +0 -0
  829. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00428_source.html +0 -0
  830. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00431.html +0 -0
  831. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00431_source.html +0 -0
  832. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00434.html +0 -0
  833. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00434_source.html +0 -0
  834. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00437.html +0 -0
  835. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00437_source.html +0 -0
  836. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00440.html +0 -0
  837. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00440_source.html +0 -0
  838. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00443.html +0 -0
  839. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00443_source.html +0 -0
  840. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00446.html +0 -0
  841. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00446_source.html +0 -0
  842. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00449.html +0 -0
  843. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00449_source.html +0 -0
  844. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00452.html +0 -0
  845. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00452_source.html +0 -0
  846. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00455.html +0 -0
  847. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00455_source.html +0 -0
  848. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00458.html +0 -0
  849. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00458_source.html +0 -0
  850. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00461.html +0 -0
  851. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00461_source.html +0 -0
  852. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00464.html +0 -0
  853. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00464_source.html +0 -0
  854. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00467.html +0 -0
  855. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00467_source.html +0 -0
  856. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00470.html +0 -0
  857. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00470_source.html +0 -0
  858. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00473.html +0 -0
  859. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00473_source.html +0 -0
  860. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00476.html +0 -0
  861. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00476_source.html +0 -0
  862. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00479.html +0 -0
  863. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00479_source.html +0 -0
  864. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00482.html +0 -0
  865. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00482_source.html +0 -0
  866. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00485.html +0 -0
  867. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00485_source.html +0 -0
  868. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00488.html +0 -0
  869. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00488_source.html +0 -0
  870. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00491.html +0 -0
  871. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00491_source.html +0 -0
  872. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00494.html +0 -0
  873. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00494_source.html +0 -0
  874. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00497.html +0 -0
  875. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00497_source.html +0 -0
  876. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00500.html +0 -0
  877. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00500_source.html +0 -0
  878. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00503.html +0 -0
  879. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00503_source.html +0 -0
  880. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00506.html +0 -0
  881. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00506_source.html +0 -0
  882. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00509.html +0 -0
  883. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00509_source.html +0 -0
  884. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00512.html +0 -0
  885. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00512_source.html +0 -0
  886. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00515.html +0 -0
  887. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00515_source.html +0 -0
  888. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00518.html +0 -0
  889. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00518_source.html +0 -0
  890. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00521_source.html +0 -0
  891. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00524.html +0 -0
  892. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00524_source.html +0 -0
  893. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00527_source.html +0 -0
  894. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00530.html +0 -0
  895. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00530_source.html +0 -0
  896. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00536.html +0 -0
  897. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00536_source.html +0 -0
  898. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00539.html +0 -0
  899. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00539_source.html +0 -0
  900. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00542.html +0 -0
  901. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00542_source.html +0 -0
  902. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00545.html +0 -0
  903. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00545_source.html +0 -0
  904. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00548.html +0 -0
  905. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00548_source.html +0 -0
  906. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00551.html +0 -0
  907. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00551_source.html +0 -0
  908. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00554.html +0 -0
  909. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00554_source.html +0 -0
  910. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00560.html +0 -0
  911. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00560_source.html +0 -0
  912. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00563.html +0 -0
  913. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00563_source.html +0 -0
  914. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00566.html +0 -0
  915. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00566_source.html +0 -0
  916. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00572.html +0 -0
  917. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00572_source.html +0 -0
  918. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00575.html +0 -0
  919. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00575_source.html +0 -0
  920. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00578.html +0 -0
  921. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00578_source.html +0 -0
  922. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00581.html +0 -0
  923. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00581_source.html +0 -0
  924. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00584.html +0 -0
  925. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00584_source.html +0 -0
  926. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00587.html +0 -0
  927. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00587_source.html +0 -0
  928. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00590.html +0 -0
  929. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00590_source.html +0 -0
  930. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00593.html +0 -0
  931. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00593_source.html +0 -0
  932. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00596.html +0 -0
  933. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00596_source.html +0 -0
  934. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00599.html +0 -0
  935. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00599_source.html +0 -0
  936. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00602.html +0 -0
  937. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00602_source.html +0 -0
  938. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00605.html +0 -0
  939. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00605_source.html +0 -0
  940. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00608.html +0 -0
  941. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00608_source.html +0 -0
  942. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00611.html +0 -0
  943. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00611_source.html +0 -0
  944. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00614.html +0 -0
  945. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00614_source.html +0 -0
  946. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00617.html +0 -0
  947. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00617_source.html +0 -0
  948. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00620.html +0 -0
  949. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00620_source.html +0 -0
  950. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00623.html +0 -0
  951. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00623_source.html +0 -0
  952. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00626.html +0 -0
  953. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00626_source.html +0 -0
  954. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00629.html +0 -0
  955. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00629_source.html +0 -0
  956. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00632.html +0 -0
  957. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00632_source.html +0 -0
  958. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00635.html +0 -0
  959. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00635_source.html +0 -0
  960. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00638.html +0 -0
  961. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00638_source.html +0 -0
  962. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00641.html +0 -0
  963. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00641_source.html +0 -0
  964. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00644.html +0 -0
  965. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00644_source.html +0 -0
  966. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00647.html +0 -0
  967. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00647_source.html +0 -0
  968. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00650.html +0 -0
  969. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00650_source.html +0 -0
  970. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00653.html +0 -0
  971. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00653_source.html +0 -0
  972. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00656.html +0 -0
  973. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00656_source.html +0 -0
  974. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00659.html +0 -0
  975. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00659_source.html +0 -0
  976. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00662.html +0 -0
  977. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00662_source.html +0 -0
  978. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00665.html +0 -0
  979. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00665_source.html +0 -0
  980. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00668.html +0 -0
  981. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00668_source.html +0 -0
  982. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00671.html +0 -0
  983. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00671_source.html +0 -0
  984. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00674.html +0 -0
  985. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00674_source.html +0 -0
  986. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00677.html +0 -0
  987. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00677_source.html +0 -0
  988. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00680.html +0 -0
  989. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00680_source.html +0 -0
  990. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00683.html +0 -0
  991. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00683_source.html +0 -0
  992. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00686.html +0 -0
  993. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00686_source.html +0 -0
  994. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00689.html +0 -0
  995. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00689_source.html +0 -0
  996. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00692.html +0 -0
  997. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00692_source.html +0 -0
  998. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00695.html +0 -0
  999. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00695_source.html +0 -0
  1000. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00698.html +0 -0
  1001. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00698_source.html +0 -0
  1002. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00701.html +0 -0
  1003. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00701_source.html +0 -0
  1004. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00704.html +0 -0
  1005. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00704_source.html +0 -0
  1006. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00707.html +0 -0
  1007. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00707_source.html +0 -0
  1008. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00710.html +0 -0
  1009. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00710_source.html +0 -0
  1010. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00713.html +0 -0
  1011. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00713_source.html +0 -0
  1012. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00716.html +0 -0
  1013. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00716_source.html +0 -0
  1014. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00719.html +0 -0
  1015. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00719_source.html +0 -0
  1016. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00722.html +0 -0
  1017. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00722_source.html +0 -0
  1018. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00725.html +0 -0
  1019. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00725_source.html +0 -0
  1020. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00728.html +0 -0
  1021. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00728_source.html +0 -0
  1022. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00731.html +0 -0
  1023. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00731_source.html +0 -0
  1024. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00734.html +0 -0
  1025. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00734_source.html +0 -0
  1026. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00737.html +0 -0
  1027. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00737_source.html +0 -0
  1028. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00740.html +0 -0
  1029. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00740_source.html +0 -0
  1030. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00743.html +0 -0
  1031. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00743_source.html +0 -0
  1032. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00746.html +0 -0
  1033. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00746_source.html +0 -0
  1034. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00749.html +0 -0
  1035. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00749_source.html +0 -0
  1036. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00752.html +0 -0
  1037. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00752_source.html +0 -0
  1038. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00755.html +0 -0
  1039. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00755_source.html +0 -0
  1040. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00758.html +0 -0
  1041. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00758_source.html +0 -0
  1042. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00761.html +0 -0
  1043. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00761_source.html +0 -0
  1044. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00764.html +0 -0
  1045. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00764_source.html +0 -0
  1046. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00767.html +0 -0
  1047. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00767_source.html +0 -0
  1048. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00770.html +0 -0
  1049. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00770_source.html +0 -0
  1050. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00773.html +0 -0
  1051. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00773_source.html +0 -0
  1052. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00776.html +0 -0
  1053. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00776_source.html +0 -0
  1054. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00779.html +0 -0
  1055. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00779_source.html +0 -0
  1056. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00782.html +0 -0
  1057. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00782_source.html +0 -0
  1058. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00785.html +0 -0
  1059. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00785_source.html +0 -0
  1060. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00788.html +0 -0
  1061. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00788_source.html +0 -0
  1062. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00791.html +0 -0
  1063. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00791_source.html +0 -0
  1064. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00794.html +0 -0
  1065. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00794_source.html +0 -0
  1066. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00797.html +0 -0
  1067. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00797_source.html +0 -0
  1068. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00800_source.html +0 -0
  1069. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00803.html +0 -0
  1070. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00804.html +0 -0
  1071. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00805.html +0 -0
  1072. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00806.html +0 -0
  1073. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00807.html +0 -0
  1074. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00808.html +0 -0
  1075. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00809.html +0 -0
  1076. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00810.html +0 -0
  1077. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00811.html +0 -0
  1078. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00812.html +0 -0
  1079. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00813.html +0 -0
  1080. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00814.html +0 -0
  1081. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00815.html +0 -0
  1082. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00816.html +0 -0
  1083. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00817.html +0 -0
  1084. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00818.html +0 -0
  1085. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00819.html +0 -0
  1086. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00820.html +0 -0
  1087. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00821.html +0 -0
  1088. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00822.html +0 -0
  1089. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00823.html +0 -0
  1090. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00824.html +0 -0
  1091. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00825.html +0 -0
  1092. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00826.html +0 -0
  1093. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00827.html +0 -0
  1094. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00828.html +0 -0
  1095. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00829.html +0 -0
  1096. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00830.html +0 -0
  1097. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00831.html +0 -0
  1098. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00832.html +0 -0
  1099. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00833.html +0 -0
  1100. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00834.html +0 -0
  1101. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00835.html +0 -0
  1102. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00836.html +0 -0
  1103. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00837.html +0 -0
  1104. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00838.html +0 -0
  1105. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00839.html +0 -0
  1106. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00840.html +0 -0
  1107. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00841.html +0 -0
  1108. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00842.html +0 -0
  1109. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00843.html +0 -0
  1110. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00844.html +0 -0
  1111. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00845.html +0 -0
  1112. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00846.html +0 -0
  1113. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00847.html +0 -0
  1114. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00848.html +0 -0
  1115. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00849.html +0 -0
  1116. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00850.html +0 -0
  1117. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00851.html +0 -0
  1118. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00852.html +0 -0
  1119. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00853.html +0 -0
  1120. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00854.html +0 -0
  1121. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00855.html +0 -0
  1122. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00856.html +0 -0
  1123. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00857.html +0 -0
  1124. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00858.html +0 -0
  1125. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00859.html +0 -0
  1126. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00860.html +0 -0
  1127. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00861.html +0 -0
  1128. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00862.html +0 -0
  1129. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00863.html +0 -0
  1130. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00864.html +0 -0
  1131. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00865.html +0 -0
  1132. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00866.html +0 -0
  1133. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00867.html +0 -0
  1134. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00868.html +0 -0
  1135. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00869.html +0 -0
  1136. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00870.html +0 -0
  1137. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00871.html +0 -0
  1138. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00872.html +0 -0
  1139. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00873.html +0 -0
  1140. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00874.html +0 -0
  1141. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00875.html +0 -0
  1142. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00876.html +0 -0
  1143. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00877.html +0 -0
  1144. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00878.html +0 -0
  1145. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00879.html +0 -0
  1146. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00880.html +0 -0
  1147. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00881.html +0 -0
  1148. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00882.html +0 -0
  1149. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00883.html +0 -0
  1150. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00884.html +0 -0
  1151. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00885.html +0 -0
  1152. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00886.html +0 -0
  1153. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00887.html +0 -0
  1154. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00888.html +0 -0
  1155. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00889.html +0 -0
  1156. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00890.html +0 -0
  1157. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00891.html +0 -0
  1158. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00892.html +0 -0
  1159. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00893.html +0 -0
  1160. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00894.html +0 -0
  1161. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00895.html +0 -0
  1162. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00896.html +0 -0
  1163. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00897.html +0 -0
  1164. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00898.html +0 -0
  1165. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00899.html +0 -0
  1166. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00900.html +0 -0
  1167. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00901.html +0 -0
  1168. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00902.html +0 -0
  1169. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00903.html +0 -0
  1170. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00904.html +0 -0
  1171. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00905.html +0 -0
  1172. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00906.html +0 -0
  1173. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00907.html +0 -0
  1174. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00908.html +0 -0
  1175. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00909.html +0 -0
  1176. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00910.html +0 -0
  1177. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00911.html +0 -0
  1178. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00912.html +0 -0
  1179. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00913.html +0 -0
  1180. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00914.html +0 -0
  1181. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00915.html +0 -0
  1182. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00916.html +0 -0
  1183. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00917.html +0 -0
  1184. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00918.html +0 -0
  1185. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00919.html +0 -0
  1186. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00920.html +0 -0
  1187. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00921.html +0 -0
  1188. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00922.html +0 -0
  1189. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00923.html +0 -0
  1190. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00924.html +0 -0
  1191. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00925.html +0 -0
  1192. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00926.html +0 -0
  1193. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00927.html +0 -0
  1194. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00928.html +0 -0
  1195. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00929.html +0 -0
  1196. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00930.html +0 -0
  1197. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00931.html +0 -0
  1198. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00932.html +0 -0
  1199. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00933.html +0 -0
  1200. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00934.html +0 -0
  1201. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00935.html +0 -0
  1202. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00936.html +0 -0
  1203. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00937.html +0 -0
  1204. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00938.html +0 -0
  1205. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00939.html +0 -0
  1206. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00940.html +0 -0
  1207. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00941.html +0 -0
  1208. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00942.html +0 -0
  1209. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00943.html +0 -0
  1210. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00944.html +0 -0
  1211. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00945.html +0 -0
  1212. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00946.html +0 -0
  1213. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00947.html +0 -0
  1214. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00948.html +0 -0
  1215. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00949.html +0 -0
  1216. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00950.html +0 -0
  1217. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00951.html +0 -0
  1218. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00952.html +0 -0
  1219. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00953.html +0 -0
  1220. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00954.html +0 -0
  1221. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00955.html +0 -0
  1222. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00956.html +0 -0
  1223. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00957.html +0 -0
  1224. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00958.html +0 -0
  1225. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00959.html +0 -0
  1226. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00960.html +0 -0
  1227. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00961.html +0 -0
  1228. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00962.html +0 -0
  1229. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00963.html +0 -0
  1230. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00964.html +0 -0
  1231. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00965.html +0 -0
  1232. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00966.html +0 -0
  1233. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00967.html +0 -0
  1234. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00968.html +0 -0
  1235. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00969.html +0 -0
  1236. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00970.html +0 -0
  1237. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00971.html +0 -0
  1238. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00972.html +0 -0
  1239. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00973.html +0 -0
  1240. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00974.html +0 -0
  1241. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00975.html +0 -0
  1242. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00976.html +0 -0
  1243. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00977.html +0 -0
  1244. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00978.html +0 -0
  1245. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00979.html +0 -0
  1246. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00980.html +0 -0
  1247. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00981.html +0 -0
  1248. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00982.html +0 -0
  1249. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00983.html +0 -0
  1250. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00984.html +0 -0
  1251. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a00985.html +0 -0
  1252. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01558.html +0 -0
  1253. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01558_source.html +0 -0
  1254. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01561.html +0 -0
  1255. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01561_source.html +0 -0
  1256. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01564.html +0 -0
  1257. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01564_source.html +0 -0
  1258. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01567.html +0 -0
  1259. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01567_source.html +0 -0
  1260. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01570.html +0 -0
  1261. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01570_source.html +0 -0
  1262. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01573.html +0 -0
  1263. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01573_source.html +0 -0
  1264. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01576.html +0 -0
  1265. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01576_source.html +0 -0
  1266. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01579.html +0 -0
  1267. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01579_source.html +0 -0
  1268. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01582.html +0 -0
  1269. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01582_source.html +0 -0
  1270. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01585.html +0 -0
  1271. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01585_source.html +0 -0
  1272. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01588.html +0 -0
  1273. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01588_source.html +0 -0
  1274. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01591.html +0 -0
  1275. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01591_source.html +0 -0
  1276. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01594.html +0 -0
  1277. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01594_source.html +0 -0
  1278. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01597.html +0 -0
  1279. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01597_source.html +0 -0
  1280. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01600.html +0 -0
  1281. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01600_source.html +0 -0
  1282. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01603.html +0 -0
  1283. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01603_source.html +0 -0
  1284. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01606.html +0 -0
  1285. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/a01606_source.html +0 -0
  1286. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/arrowdown.png +0 -0
  1287. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/arrowright.png +0 -0
  1288. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/bc_s.png +0 -0
  1289. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/bdwn.png +0 -0
  1290. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/closed.png +0 -0
  1291. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_382f4fd018b81be8753cb53c0a41a09a.html +0 -0
  1292. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_50f12b6ceb23d7f6adfb377a1ae8b006.html +0 -0
  1293. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_628fd60eb37daf5aa9a81e3983c640b7.html +0 -0
  1294. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_63ed049134a778d525e06b63afc2c979.html +0 -0
  1295. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_885cc87fac2d91e269af0a5a959fa5f6.html +0 -0
  1296. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_b11711034def6a4ce452fe9c451dd3d0.html +0 -0
  1297. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_b171cecbb853a9ee4caace490047c53f.html +0 -0
  1298. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_c98a9ac98258ab9f831b188d66361a70.html +0 -0
  1299. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_d9678a6a9012da969e0b059b39347945.html +0 -0
  1300. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dir_fca33f1b5115d46f42c670590789c0d2.html +0 -0
  1301. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/doc.png +0 -0
  1302. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/doxygen.css +0 -0
  1303. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/doxygen.png +0 -0
  1304. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/dynsections.js +0 -0
  1305. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/files.html +0 -0
  1306. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/folderclosed.png +0 -0
  1307. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/folderopen.png +0 -0
  1308. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/index.html +0 -0
  1309. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/jquery.js +0 -0
  1310. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/logo-mini.png +0 -0
  1311. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/menu.js +0 -0
  1312. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/menudata.js +0 -0
  1313. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/modules.html +0 -0
  1314. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/nav_f.png +0 -0
  1315. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/nav_g.png +0 -0
  1316. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/nav_h.png +0 -0
  1317. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/open.png +0 -0
  1318. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_0.html +0 -0
  1319. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_0.js +0 -0
  1320. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_1.html +0 -0
  1321. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_1.js +0 -0
  1322. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_10.html +0 -0
  1323. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_10.js +0 -0
  1324. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_11.html +0 -0
  1325. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_11.js +0 -0
  1326. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_12.html +0 -0
  1327. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_12.js +0 -0
  1328. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_13.html +0 -0
  1329. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_13.js +0 -0
  1330. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_14.html +0 -0
  1331. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_14.js +0 -0
  1332. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_15.html +0 -0
  1333. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_15.js +0 -0
  1334. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_16.html +0 -0
  1335. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_16.js +0 -0
  1336. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_2.html +0 -0
  1337. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_2.js +0 -0
  1338. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_3.html +0 -0
  1339. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_3.js +0 -0
  1340. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_4.html +0 -0
  1341. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_4.js +0 -0
  1342. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_5.html +0 -0
  1343. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_5.js +0 -0
  1344. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_6.html +0 -0
  1345. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_6.js +0 -0
  1346. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_7.html +0 -0
  1347. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_7.js +0 -0
  1348. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_8.html +0 -0
  1349. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_8.js +0 -0
  1350. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_9.html +0 -0
  1351. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_9.js +0 -0
  1352. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_a.html +0 -0
  1353. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_a.js +0 -0
  1354. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_b.html +0 -0
  1355. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_b.js +0 -0
  1356. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_c.html +0 -0
  1357. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_c.js +0 -0
  1358. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_d.html +0 -0
  1359. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_d.js +0 -0
  1360. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_e.html +0 -0
  1361. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_e.js +0 -0
  1362. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_f.html +0 -0
  1363. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/all_f.js +0 -0
  1364. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/close.png +0 -0
  1365. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_0.html +0 -0
  1366. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_0.js +0 -0
  1367. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_1.html +0 -0
  1368. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_1.js +0 -0
  1369. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_10.html +0 -0
  1370. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_10.js +0 -0
  1371. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_11.html +0 -0
  1372. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_11.js +0 -0
  1373. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_12.html +0 -0
  1374. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_12.js +0 -0
  1375. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_13.html +0 -0
  1376. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_13.js +0 -0
  1377. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_14.html +0 -0
  1378. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_14.js +0 -0
  1379. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_2.html +0 -0
  1380. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_2.js +0 -0
  1381. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_3.html +0 -0
  1382. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_3.js +0 -0
  1383. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_4.html +0 -0
  1384. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_4.js +0 -0
  1385. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_5.html +0 -0
  1386. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_5.js +0 -0
  1387. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_6.html +0 -0
  1388. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_6.js +0 -0
  1389. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_7.html +0 -0
  1390. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_7.js +0 -0
  1391. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_8.html +0 -0
  1392. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_8.js +0 -0
  1393. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_9.html +0 -0
  1394. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_9.js +0 -0
  1395. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_a.html +0 -0
  1396. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_a.js +0 -0
  1397. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_b.html +0 -0
  1398. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_b.js +0 -0
  1399. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_c.html +0 -0
  1400. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_c.js +0 -0
  1401. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_d.html +0 -0
  1402. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_d.js +0 -0
  1403. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_e.html +0 -0
  1404. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_e.js +0 -0
  1405. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_f.html +0 -0
  1406. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/files_f.js +0 -0
  1407. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_0.html +0 -0
  1408. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_0.js +0 -0
  1409. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_1.html +0 -0
  1410. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_1.js +0 -0
  1411. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_10.html +0 -0
  1412. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_10.js +0 -0
  1413. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_11.html +0 -0
  1414. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_11.js +0 -0
  1415. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_12.html +0 -0
  1416. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_12.js +0 -0
  1417. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_13.html +0 -0
  1418. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_13.js +0 -0
  1419. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_14.html +0 -0
  1420. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_14.js +0 -0
  1421. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_15.html +0 -0
  1422. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_15.js +0 -0
  1423. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_16.html +0 -0
  1424. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_16.js +0 -0
  1425. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_2.html +0 -0
  1426. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_2.js +0 -0
  1427. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_3.html +0 -0
  1428. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_3.js +0 -0
  1429. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_4.html +0 -0
  1430. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_4.js +0 -0
  1431. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_5.html +0 -0
  1432. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_5.js +0 -0
  1433. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_6.html +0 -0
  1434. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_6.js +0 -0
  1435. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_7.html +0 -0
  1436. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_7.js +0 -0
  1437. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_8.html +0 -0
  1438. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_8.js +0 -0
  1439. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_9.html +0 -0
  1440. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_9.js +0 -0
  1441. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_a.html +0 -0
  1442. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_a.js +0 -0
  1443. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_b.html +0 -0
  1444. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_b.js +0 -0
  1445. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_c.html +0 -0
  1446. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_c.js +0 -0
  1447. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_d.html +0 -0
  1448. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_d.js +0 -0
  1449. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_e.html +0 -0
  1450. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_e.js +0 -0
  1451. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_f.html +0 -0
  1452. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/functions_f.js +0 -0
  1453. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_0.html +0 -0
  1454. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_0.js +0 -0
  1455. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_1.html +0 -0
  1456. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_1.js +0 -0
  1457. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_2.html +0 -0
  1458. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_2.js +0 -0
  1459. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_3.html +0 -0
  1460. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_3.js +0 -0
  1461. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_4.html +0 -0
  1462. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_4.js +0 -0
  1463. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_5.html +0 -0
  1464. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_5.js +0 -0
  1465. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_6.html +0 -0
  1466. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_6.js +0 -0
  1467. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_7.html +0 -0
  1468. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_7.js +0 -0
  1469. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_8.html +0 -0
  1470. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_8.js +0 -0
  1471. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_9.html +0 -0
  1472. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/groups_9.js +0 -0
  1473. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/mag_sel.png +0 -0
  1474. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/nomatches.html +0 -0
  1475. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/pages_0.html +0 -0
  1476. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/pages_0.js +0 -0
  1477. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/search.css +0 -0
  1478. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/search.js +0 -0
  1479. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/search_l.png +0 -0
  1480. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/search_m.png +0 -0
  1481. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/search_r.png +0 -0
  1482. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/searchdata.js +0 -0
  1483. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_0.html +0 -0
  1484. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_0.js +0 -0
  1485. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_1.html +0 -0
  1486. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_1.js +0 -0
  1487. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_2.html +0 -0
  1488. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_2.js +0 -0
  1489. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_3.html +0 -0
  1490. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_3.js +0 -0
  1491. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_4.html +0 -0
  1492. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_4.js +0 -0
  1493. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_5.html +0 -0
  1494. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_5.js +0 -0
  1495. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_6.html +0 -0
  1496. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_6.js +0 -0
  1497. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_7.html +0 -0
  1498. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_7.js +0 -0
  1499. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_8.html +0 -0
  1500. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_8.js +0 -0
  1501. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_9.html +0 -0
  1502. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_9.js +0 -0
  1503. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_a.html +0 -0
  1504. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_a.js +0 -0
  1505. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_b.html +0 -0
  1506. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_b.js +0 -0
  1507. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_c.html +0 -0
  1508. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_c.js +0 -0
  1509. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_d.html +0 -0
  1510. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/search/typedefs_d.js +0 -0
  1511. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/splitbar.png +0 -0
  1512. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/sync_off.png +0 -0
  1513. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/sync_on.png +0 -0
  1514. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/tab_a.png +0 -0
  1515. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/tab_b.png +0 -0
  1516. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/tab_h.png +0 -0
  1517. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/tab_s.png +0 -0
  1518. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/api/tabs.css +0 -0
  1519. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/man.doxy +0 -0
  1520. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/frontpage1.png +0 -0
  1521. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/frontpage2.png +0 -0
  1522. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/g-truc.png +0 -0
  1523. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/logo-mini.png +0 -0
  1524. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/logo.png +0 -0
  1525. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin1.jpg +0 -0
  1526. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin2.jpg +0 -0
  1527. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin3.jpg +0 -0
  1528. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin4.png +0 -0
  1529. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin5.png +0 -0
  1530. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-perlin6.png +0 -0
  1531. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex1.jpg +0 -0
  1532. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex2.jpg +0 -0
  1533. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/noise-simplex3.jpg +0 -0
  1534. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/random-ballrand.png +0 -0
  1535. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/random-circularrand.png +0 -0
  1536. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/random-diskrand.png +0 -0
  1537. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/random-gaussrand.png +0 -0
  1538. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/random-linearrand.png +0 -0
  1539. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/random-sphericalrand.png +0 -0
  1540. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-cinder.png +0 -0
  1541. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-glsl4book.jpg +0 -0
  1542. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-leosfortune.jpeg +0 -0
  1543. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-leosfortune2.jpg +0 -0
  1544. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-opencloth1.png +0 -0
  1545. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-opencloth3.png +0 -0
  1546. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-outerra1.jpg +0 -0
  1547. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-outerra2.jpg +0 -0
  1548. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-outerra3.jpg +0 -0
  1549. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual/references-outerra4.jpg +0 -0
  1550. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/manual.pdf +0 -0
  1551. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/bc_s.png +0 -0
  1552. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/bdwn.png +0 -0
  1553. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/closed.png +0 -0
  1554. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/doc.png +0 -0
  1555. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/doxygen.css +0 -0
  1556. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/doxygen.png +0 -0
  1557. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/folderclosed.png +0 -0
  1558. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/folderopen.png +0 -0
  1559. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/logo-mini.png +0 -0
  1560. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/nav_f.png +0 -0
  1561. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/nav_g.png +0 -0
  1562. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/nav_h.png +0 -0
  1563. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/open.png +0 -0
  1564. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/splitbar.png +0 -0
  1565. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/sync_off.png +0 -0
  1566. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/sync_on.png +0 -0
  1567. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/tab_a.png +0 -0
  1568. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/tab_b.png +0 -0
  1569. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/tab_h.png +0 -0
  1570. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/doc/theme/tab_s.png +0 -0
  1571. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/CMakeLists.txt +0 -0
  1572. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/common.hpp +0 -0
  1573. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/_features.hpp +0 -0
  1574. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/_fixes.hpp +0 -0
  1575. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/_noise.hpp +0 -0
  1576. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/_swizzle.hpp +0 -0
  1577. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/_swizzle_func.hpp +0 -0
  1578. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/_vectorize.hpp +0 -0
  1579. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/compute_common.hpp +0 -0
  1580. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/compute_vector_decl.hpp +0 -0
  1581. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/compute_vector_relational.hpp +0 -0
  1582. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_common.inl +0 -0
  1583. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_common_simd.inl +0 -0
  1584. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_exponential.inl +0 -0
  1585. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_exponential_simd.inl +0 -0
  1586. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_geometric.inl +0 -0
  1587. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_geometric_simd.inl +0 -0
  1588. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_integer.inl +0 -0
  1589. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_integer_simd.inl +0 -0
  1590. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_matrix.inl +0 -0
  1591. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_matrix_simd.inl +0 -0
  1592. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_packing.inl +0 -0
  1593. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_packing_simd.inl +0 -0
  1594. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_trigonometric.inl +0 -0
  1595. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_trigonometric_simd.inl +0 -0
  1596. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational.inl +0 -0
  1597. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/func_vector_relational_simd.inl +0 -0
  1598. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/glm.cpp +0 -0
  1599. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/qualifier.hpp +0 -0
  1600. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/setup.hpp +0 -0
  1601. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_float.hpp +0 -0
  1602. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_half.hpp +0 -0
  1603. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_half.inl +0 -0
  1604. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.hpp +0 -0
  1605. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x2.inl +0 -0
  1606. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.hpp +0 -0
  1607. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x3.inl +0 -0
  1608. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.hpp +0 -0
  1609. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat2x4.inl +0 -0
  1610. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.hpp +0 -0
  1611. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x2.inl +0 -0
  1612. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.hpp +0 -0
  1613. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x3.inl +0 -0
  1614. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.hpp +0 -0
  1615. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat3x4.inl +0 -0
  1616. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.hpp +0 -0
  1617. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x2.inl +0 -0
  1618. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.hpp +0 -0
  1619. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x3.inl +0 -0
  1620. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.hpp +0 -0
  1621. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4.inl +0 -0
  1622. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_mat4x4_simd.inl +0 -0
  1623. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_quat.hpp +0 -0
  1624. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_quat.inl +0 -0
  1625. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_quat_simd.inl +0 -0
  1626. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.hpp +0 -0
  1627. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec1.inl +0 -0
  1628. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.hpp +0 -0
  1629. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec2.inl +0 -0
  1630. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.hpp +0 -0
  1631. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec3.inl +0 -0
  1632. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.hpp +0 -0
  1633. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec4.inl +0 -0
  1634. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/detail/type_vec4_simd.inl +0 -0
  1635. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/exponential.hpp +0 -0
  1636. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/_matrix_vectorize.hpp +0 -0
  1637. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.hpp +0 -0
  1638. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_clip_space.inl +0 -0
  1639. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.hpp +0 -0
  1640. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_common.inl +0 -0
  1641. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2.hpp +0 -0
  1642. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x2_precision.hpp +0 -0
  1643. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3.hpp +0 -0
  1644. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x3_precision.hpp +0 -0
  1645. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4.hpp +0 -0
  1646. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double2x4_precision.hpp +0 -0
  1647. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2.hpp +0 -0
  1648. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x2_precision.hpp +0 -0
  1649. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3.hpp +0 -0
  1650. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x3_precision.hpp +0 -0
  1651. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4.hpp +0 -0
  1652. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double3x4_precision.hpp +0 -0
  1653. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2.hpp +0 -0
  1654. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x2_precision.hpp +0 -0
  1655. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3.hpp +0 -0
  1656. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x3_precision.hpp +0 -0
  1657. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4.hpp +0 -0
  1658. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_double4x4_precision.hpp +0 -0
  1659. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2.hpp +0 -0
  1660. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x2_precision.hpp +0 -0
  1661. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3.hpp +0 -0
  1662. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x3_precision.hpp +0 -0
  1663. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4.hpp +0 -0
  1664. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float2x4_precision.hpp +0 -0
  1665. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2.hpp +0 -0
  1666. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x2_precision.hpp +0 -0
  1667. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3.hpp +0 -0
  1668. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x3_precision.hpp +0 -0
  1669. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4.hpp +0 -0
  1670. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float3x4_precision.hpp +0 -0
  1671. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2.hpp +0 -0
  1672. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x2_precision.hpp +0 -0
  1673. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3.hpp +0 -0
  1674. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x3_precision.hpp +0 -0
  1675. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4.hpp +0 -0
  1676. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_float4x4_precision.hpp +0 -0
  1677. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x2.hpp +0 -0
  1678. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x2_sized.hpp +0 -0
  1679. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x3.hpp +0 -0
  1680. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x3_sized.hpp +0 -0
  1681. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x4.hpp +0 -0
  1682. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int2x4_sized.hpp +0 -0
  1683. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x2.hpp +0 -0
  1684. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x2_sized.hpp +0 -0
  1685. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x3.hpp +0 -0
  1686. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x3_sized.hpp +0 -0
  1687. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x4.hpp +0 -0
  1688. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int3x4_sized.hpp +0 -0
  1689. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x2.hpp +0 -0
  1690. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x2_sized.hpp +0 -0
  1691. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x3.hpp +0 -0
  1692. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x3_sized.hpp +0 -0
  1693. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x4.hpp +0 -0
  1694. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_int4x4_sized.hpp +0 -0
  1695. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_integer.hpp +0 -0
  1696. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_integer.inl +0 -0
  1697. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.hpp +0 -0
  1698. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_projection.inl +0 -0
  1699. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.hpp +0 -0
  1700. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_relational.inl +0 -0
  1701. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.hpp +0 -0
  1702. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_transform.inl +0 -0
  1703. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x2.hpp +0 -0
  1704. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x2_sized.hpp +0 -0
  1705. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x3.hpp +0 -0
  1706. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x3_sized.hpp +0 -0
  1707. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x4.hpp +0 -0
  1708. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint2x4_sized.hpp +0 -0
  1709. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x2.hpp +0 -0
  1710. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x2_sized.hpp +0 -0
  1711. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x3.hpp +0 -0
  1712. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x3_sized.hpp +0 -0
  1713. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x4.hpp +0 -0
  1714. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint3x4_sized.hpp +0 -0
  1715. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x2.hpp +0 -0
  1716. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x2_sized.hpp +0 -0
  1717. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x3.hpp +0 -0
  1718. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x3_sized.hpp +0 -0
  1719. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x4.hpp +0 -0
  1720. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/matrix_uint4x4_sized.hpp +0 -0
  1721. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.hpp +0 -0
  1722. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common.inl +0 -0
  1723. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_common_simd.inl +0 -0
  1724. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double.hpp +0 -0
  1725. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_double_precision.hpp +0 -0
  1726. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.hpp +0 -0
  1727. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_exponential.inl +0 -0
  1728. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float.hpp +0 -0
  1729. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_float_precision.hpp +0 -0
  1730. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.hpp +0 -0
  1731. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_geometric.inl +0 -0
  1732. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.hpp +0 -0
  1733. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_relational.inl +0 -0
  1734. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.hpp +0 -0
  1735. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_transform.inl +0 -0
  1736. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.hpp +0 -0
  1737. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/quaternion_trigonometric.inl +0 -0
  1738. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.hpp +0 -0
  1739. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_common.inl +0 -0
  1740. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.hpp +0 -0
  1741. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_constants.inl +0 -0
  1742. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_int_sized.hpp +0 -0
  1743. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.hpp +0 -0
  1744. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_integer.inl +0 -0
  1745. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_packing.hpp +0 -0
  1746. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_packing.inl +0 -0
  1747. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_reciprocal.hpp +0 -0
  1748. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_reciprocal.inl +0 -0
  1749. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.hpp +0 -0
  1750. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_relational.inl +0 -0
  1751. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_uint_sized.hpp +0 -0
  1752. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.hpp +0 -0
  1753. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/scalar_ulp.inl +0 -0
  1754. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1.hpp +0 -0
  1755. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_bool1_precision.hpp +0 -0
  1756. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2.hpp +0 -0
  1757. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_bool2_precision.hpp +0 -0
  1758. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3.hpp +0 -0
  1759. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_bool3_precision.hpp +0 -0
  1760. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4.hpp +0 -0
  1761. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_bool4_precision.hpp +0 -0
  1762. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_common.hpp +0 -0
  1763. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_common.inl +0 -0
  1764. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_double1.hpp +0 -0
  1765. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_double1_precision.hpp +0 -0
  1766. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_double2.hpp +0 -0
  1767. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_double2_precision.hpp +0 -0
  1768. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_double3.hpp +0 -0
  1769. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_double3_precision.hpp +0 -0
  1770. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_double4.hpp +0 -0
  1771. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_double4_precision.hpp +0 -0
  1772. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_float1.hpp +0 -0
  1773. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_float1_precision.hpp +0 -0
  1774. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_float2.hpp +0 -0
  1775. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_float2_precision.hpp +0 -0
  1776. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_float3.hpp +0 -0
  1777. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_float3_precision.hpp +0 -0
  1778. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_float4.hpp +0 -0
  1779. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_float4_precision.hpp +0 -0
  1780. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_int1.hpp +0 -0
  1781. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_int1_sized.hpp +0 -0
  1782. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_int2.hpp +0 -0
  1783. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_int2_sized.hpp +0 -0
  1784. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_int3.hpp +0 -0
  1785. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_int3_sized.hpp +0 -0
  1786. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_int4.hpp +0 -0
  1787. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_int4_sized.hpp +0 -0
  1788. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.hpp +0 -0
  1789. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_integer.inl +0 -0
  1790. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_packing.hpp +0 -0
  1791. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_packing.inl +0 -0
  1792. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_reciprocal.hpp +0 -0
  1793. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_reciprocal.inl +0 -0
  1794. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.hpp +0 -0
  1795. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_relational.inl +0 -0
  1796. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1.hpp +0 -0
  1797. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_uint1_sized.hpp +0 -0
  1798. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2.hpp +0 -0
  1799. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_uint2_sized.hpp +0 -0
  1800. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3.hpp +0 -0
  1801. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_uint3_sized.hpp +0 -0
  1802. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4.hpp +0 -0
  1803. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_uint4_sized.hpp +0 -0
  1804. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.hpp +0 -0
  1805. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext/vector_ulp.inl +0 -0
  1806. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/ext.hpp +0 -0
  1807. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/fwd.hpp +0 -0
  1808. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/geometric.hpp +0 -0
  1809. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/glm.cppm +0 -0
  1810. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/glm.hpp +0 -0
  1811. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.hpp +0 -0
  1812. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/bitfield.inl +0 -0
  1813. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/color_space.hpp +0 -0
  1814. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/color_space.inl +0 -0
  1815. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/constants.hpp +0 -0
  1816. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/constants.inl +0 -0
  1817. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.hpp +0 -0
  1818. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/epsilon.inl +0 -0
  1819. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/integer.hpp +0 -0
  1820. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/integer.inl +0 -0
  1821. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.hpp +0 -0
  1822. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/matrix_access.inl +0 -0
  1823. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/matrix_integer.hpp +0 -0
  1824. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.hpp +0 -0
  1825. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/matrix_inverse.inl +0 -0
  1826. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.hpp +0 -0
  1827. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/matrix_transform.inl +0 -0
  1828. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/noise.hpp +0 -0
  1829. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/noise.inl +0 -0
  1830. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/packing.hpp +0 -0
  1831. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/packing.inl +0 -0
  1832. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.hpp +0 -0
  1833. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/quaternion.inl +0 -0
  1834. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/quaternion_simd.inl +0 -0
  1835. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/random.hpp +0 -0
  1836. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/random.inl +0 -0
  1837. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/reciprocal.hpp +0 -0
  1838. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/round.hpp +0 -0
  1839. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/round.inl +0 -0
  1840. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/type_aligned.hpp +0 -0
  1841. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.hpp +0 -0
  1842. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/type_precision.inl +0 -0
  1843. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.hpp +0 -0
  1844. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/type_ptr.inl +0 -0
  1845. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/ulp.hpp +0 -0
  1846. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/ulp.inl +0 -0
  1847. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtc/vec1.hpp +0 -0
  1848. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.hpp +0 -0
  1849. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/associated_min_max.inl +0 -0
  1850. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/bit.hpp +0 -0
  1851. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/bit.inl +0 -0
  1852. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.hpp +0 -0
  1853. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/closest_point.inl +0 -0
  1854. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.hpp +0 -0
  1855. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/color_encoding.inl +0 -0
  1856. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/color_space.hpp +0 -0
  1857. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/color_space.inl +0 -0
  1858. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.hpp +0 -0
  1859. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/color_space_YCoCg.inl +0 -0
  1860. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/common.hpp +0 -0
  1861. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/common.inl +0 -0
  1862. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.hpp +0 -0
  1863. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/compatibility.inl +0 -0
  1864. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.hpp +0 -0
  1865. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/component_wise.inl +0 -0
  1866. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.hpp +0 -0
  1867. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/dual_quaternion.inl +0 -0
  1868. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/easing.hpp +0 -0
  1869. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/easing.inl +0 -0
  1870. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.hpp +0 -0
  1871. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/euler_angles.inl +0 -0
  1872. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/extend.hpp +0 -0
  1873. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/extend.inl +0 -0
  1874. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.hpp +0 -0
  1875. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/extended_min_max.inl +0 -0
  1876. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.hpp +0 -0
  1877. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/exterior_product.inl +0 -0
  1878. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.hpp +0 -0
  1879. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/fast_exponential.inl +0 -0
  1880. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.hpp +0 -0
  1881. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/fast_square_root.inl +0 -0
  1882. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.hpp +0 -0
  1883. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/fast_trigonometry.inl +0 -0
  1884. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/float_notmalize.inl +0 -0
  1885. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/functions.hpp +0 -0
  1886. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/functions.inl +0 -0
  1887. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.hpp +0 -0
  1888. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/gradient_paint.inl +0 -0
  1889. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.hpp +0 -0
  1890. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/handed_coordinate_space.inl +0 -0
  1891. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/hash.hpp +0 -0
  1892. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/hash.inl +0 -0
  1893. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/integer.hpp +0 -0
  1894. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/integer.inl +0 -0
  1895. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/intersect.hpp +0 -0
  1896. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/intersect.inl +0 -0
  1897. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/io.hpp +0 -0
  1898. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/io.inl +0 -0
  1899. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/log_base.hpp +0 -0
  1900. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/log_base.inl +0 -0
  1901. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.hpp +0 -0
  1902. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_cross_product.inl +0 -0
  1903. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.hpp +0 -0
  1904. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_decompose.inl +0 -0
  1905. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.hpp +0 -0
  1906. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_factorisation.inl +0 -0
  1907. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.hpp +0 -0
  1908. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_interpolation.inl +0 -0
  1909. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.hpp +0 -0
  1910. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_major_storage.inl +0 -0
  1911. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.hpp +0 -0
  1912. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_operation.inl +0 -0
  1913. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.hpp +0 -0
  1914. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_query.inl +0 -0
  1915. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.hpp +0 -0
  1916. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/matrix_transform_2d.inl +0 -0
  1917. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.hpp +0 -0
  1918. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/mixed_product.inl +0 -0
  1919. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/norm.hpp +0 -0
  1920. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/norm.inl +0 -0
  1921. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/normal.hpp +0 -0
  1922. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/normal.inl +0 -0
  1923. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.hpp +0 -0
  1924. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/normalize_dot.inl +0 -0
  1925. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/number_precision.hpp +0 -0
  1926. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.hpp +0 -0
  1927. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/optimum_pow.inl +0 -0
  1928. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.hpp +0 -0
  1929. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/orthonormalize.inl +0 -0
  1930. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/pca.hpp +0 -0
  1931. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/pca.inl +0 -0
  1932. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.hpp +0 -0
  1933. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/perpendicular.inl +0 -0
  1934. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.hpp +0 -0
  1935. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/polar_coordinates.inl +0 -0
  1936. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/projection.hpp +0 -0
  1937. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/projection.inl +0 -0
  1938. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.hpp +0 -0
  1939. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/quaternion.inl +0 -0
  1940. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/range.hpp +0 -0
  1941. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.hpp +0 -0
  1942. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/raw_data.inl +0 -0
  1943. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.hpp +0 -0
  1944. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/rotate_normalized_axis.inl +0 -0
  1945. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.hpp +0 -0
  1946. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/rotate_vector.inl +0 -0
  1947. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/scalar_multiplication.hpp +0 -0
  1948. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.hpp +0 -0
  1949. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/scalar_relational.inl +0 -0
  1950. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/spline.hpp +0 -0
  1951. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/spline.inl +0 -0
  1952. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.hpp +0 -0
  1953. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/std_based_type.inl +0 -0
  1954. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.hpp +0 -0
  1955. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/string_cast.inl +0 -0
  1956. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/texture.hpp +0 -0
  1957. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/texture.inl +0 -0
  1958. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/transform.hpp +0 -0
  1959. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/transform.inl +0 -0
  1960. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/transform2.hpp +0 -0
  1961. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/transform2.inl +0 -0
  1962. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.hpp +0 -0
  1963. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/type_aligned.inl +0 -0
  1964. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.hpp +0 -0
  1965. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/type_trait.inl +0 -0
  1966. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/vec_swizzle.hpp +0 -0
  1967. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.hpp +0 -0
  1968. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/vector_angle.inl +0 -0
  1969. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.hpp +0 -0
  1970. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/vector_query.inl +0 -0
  1971. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/wrap.hpp +0 -0
  1972. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/gtx/wrap.inl +0 -0
  1973. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/integer.hpp +0 -0
  1974. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat2x2.hpp +0 -0
  1975. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat2x3.hpp +0 -0
  1976. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat2x4.hpp +0 -0
  1977. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat3x2.hpp +0 -0
  1978. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat3x3.hpp +0 -0
  1979. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat3x4.hpp +0 -0
  1980. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat4x2.hpp +0 -0
  1981. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat4x3.hpp +0 -0
  1982. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/mat4x4.hpp +0 -0
  1983. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/matrix.hpp +0 -0
  1984. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/packing.hpp +0 -0
  1985. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/common.h +0 -0
  1986. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/exponential.h +0 -0
  1987. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/geometric.h +0 -0
  1988. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/integer.h +0 -0
  1989. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/matrix.h +0 -0
  1990. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/neon.h +0 -0
  1991. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/packing.h +0 -0
  1992. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/platform.h +0 -0
  1993. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/trigonometric.h +0 -0
  1994. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/simd/vector_relational.h +0 -0
  1995. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/trigonometric.hpp +0 -0
  1996. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/vec2.hpp +0 -0
  1997. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/vec3.hpp +0 -0
  1998. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/vec4.hpp +0 -0
  1999. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/glm/vector_relational.hpp +0 -0
  2000. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/manual.md +0 -0
  2001. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/readme.md +0 -0
  2002. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/CMakeLists.txt +0 -0
  2003. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/bug/CMakeLists.txt +0 -0
  2004. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/bug/bug_ms_vec_static.cpp +0 -0
  2005. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/cmake/CMakeLists.txt +0 -0
  2006. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/cmake/test_find_glm.cpp +0 -0
  2007. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/CMakeLists.txt +0 -0
  2008. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_cpp_constexpr.cpp +0 -0
  2009. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_cpp_defaulted_ctor.cpp +0 -0
  2010. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_aligned_gentypes.cpp +0 -0
  2011. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_arch_unknown.cpp +0 -0
  2012. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_compiler_unknown.cpp +0 -0
  2013. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_ctor_init.cpp +0 -0
  2014. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_depth_zero_to_one.cpp +0 -0
  2015. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_explicit_ctor.cpp +0 -0
  2016. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_inline.cpp +0 -0
  2017. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_left_handed.cpp +0 -0
  2018. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_platform_unknown.cpp +0 -0
  2019. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_pure.cpp +0 -0
  2020. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_quat_wxyz.cpp +0 -0
  2021. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_size_t_length.cpp +0 -0
  2022. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_unrestricted_gentype.cpp +0 -0
  2023. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_force_xyzw_only.cpp +0 -0
  2024. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_common.cpp +0 -0
  2025. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_exponential.cpp +0 -0
  2026. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_geometric.cpp +0 -0
  2027. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_integer.cpp +0 -0
  2028. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_integer_bit_count.cpp +0 -0
  2029. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_integer_find_lsb.cpp +0 -0
  2030. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_integer_find_msb.cpp +0 -0
  2031. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_matrix.cpp +0 -0
  2032. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_noise.cpp +0 -0
  2033. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_packing.cpp +0 -0
  2034. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_swizzle.cpp +0 -0
  2035. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_trigonometric.cpp +0 -0
  2036. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_func_vector_relational.cpp +0 -0
  2037. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx03.cpp +0 -0
  2038. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx98.cpp +0 -0
  2039. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_setup_force_cxx_unknown.cpp +0 -0
  2040. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_setup_force_size_t_length.cpp +0 -0
  2041. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_setup_message.cpp +0 -0
  2042. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_setup_platform_unknown.cpp +0 -0
  2043. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_setup_precision.cpp +0 -0
  2044. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_aligned.cpp +0 -0
  2045. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_cast.cpp +0 -0
  2046. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_ctor.cpp +0 -0
  2047. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_int.cpp +0 -0
  2048. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_length.cpp +0 -0
  2049. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x2.cpp +0 -0
  2050. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x3.cpp +0 -0
  2051. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat2x4.cpp +0 -0
  2052. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x2.cpp +0 -0
  2053. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x3.cpp +0 -0
  2054. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat3x4.cpp +0 -0
  2055. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x2.cpp +0 -0
  2056. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x3.cpp +0 -0
  2057. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_mat4x4.cpp +0 -0
  2058. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_vec1.cpp +0 -0
  2059. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_vec2.cpp +0 -0
  2060. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_vec3.cpp +0 -0
  2061. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/core/core_type_vec4.cpp +0 -0
  2062. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/CMakeLists.txt +0 -0
  2063. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_clip_space.cpp +0 -0
  2064. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_common.cpp +0 -0
  2065. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x2_sized.cpp +0 -0
  2066. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x3_sized.cpp +0 -0
  2067. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int2x4_sized.cpp +0 -0
  2068. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x2_sized.cpp +0 -0
  2069. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x3_sized.cpp +0 -0
  2070. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int3x4_sized.cpp +0 -0
  2071. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x2_sized.cpp +0 -0
  2072. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x3_sized.cpp +0 -0
  2073. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_int4x4_sized.cpp +0 -0
  2074. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_integer.cpp +0 -0
  2075. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_projection.cpp +0 -0
  2076. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_relational.cpp +0 -0
  2077. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_transform.cpp +0 -0
  2078. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x2_sized.cpp +0 -0
  2079. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x3_sized.cpp +0 -0
  2080. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint2x4_sized.cpp +0 -0
  2081. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x2_sized.cpp +0 -0
  2082. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x3_sized.cpp +0 -0
  2083. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint3x4_sized.cpp +0 -0
  2084. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x2_sized.cpp +0 -0
  2085. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x3_sized.cpp +0 -0
  2086. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_matrix_uint4x4_sized.cpp +0 -0
  2087. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_common.cpp +0 -0
  2088. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_exponential.cpp +0 -0
  2089. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_geometric.cpp +0 -0
  2090. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_relational.cpp +0 -0
  2091. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_transform.cpp +0 -0
  2092. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_trigonometric.cpp +0 -0
  2093. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_quaternion_type.cpp +0 -0
  2094. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_common.cpp +0 -0
  2095. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_constants.cpp +0 -0
  2096. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_int_sized.cpp +0 -0
  2097. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_integer.cpp +0 -0
  2098. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_packing.cpp +0 -0
  2099. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_reciprocal.cpp +0 -0
  2100. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_relational.cpp +0 -0
  2101. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_uint_sized.cpp +0 -0
  2102. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_scalar_ulp.cpp +0 -0
  2103. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vec1.cpp +0 -0
  2104. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_bool1.cpp +0 -0
  2105. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_common.cpp +0 -0
  2106. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_iec559.cpp +0 -0
  2107. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int1_sized.cpp +0 -0
  2108. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int2_sized.cpp +0 -0
  2109. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int3_sized.cpp +0 -0
  2110. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_int4_sized.cpp +0 -0
  2111. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_integer.cpp +0 -0
  2112. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_integer_sized.cpp +0 -0
  2113. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_packing.cpp +0 -0
  2114. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_reciprocal.cpp +0 -0
  2115. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_relational.cpp +0 -0
  2116. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint1_sized.cpp +0 -0
  2117. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint2_sized.cpp +0 -0
  2118. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint3_sized.cpp +0 -0
  2119. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_uint4_sized.cpp +0 -0
  2120. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/ext/ext_vector_ulp.cpp +0 -0
  2121. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/glm.cppcheck +0 -0
  2122. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/CMakeLists.txt +0 -0
  2123. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_bitfield.cpp +0 -0
  2124. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_color_space.cpp +0 -0
  2125. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_constants.cpp +0 -0
  2126. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_epsilon.cpp +0 -0
  2127. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_integer.cpp +0 -0
  2128. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_access.cpp +0 -0
  2129. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_integer.cpp +0 -0
  2130. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_inverse.cpp +0 -0
  2131. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_matrix_transform.cpp +0 -0
  2132. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_noise.cpp +0 -0
  2133. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_packing.cpp +0 -0
  2134. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_quaternion.cpp +0 -0
  2135. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_random.cpp +0 -0
  2136. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_reciprocal.cpp +0 -0
  2137. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_round.cpp +0 -0
  2138. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_aligned.cpp +0 -0
  2139. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_precision.cpp +0 -0
  2140. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_type_ptr.cpp +0 -0
  2141. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_ulp.cpp +0 -0
  2142. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_user_defined_types.cpp +0 -0
  2143. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtc/gtc_vec1.cpp +0 -0
  2144. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/CMakeLists.txt +0 -0
  2145. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx.cpp +0 -0
  2146. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_associated_min_max.cpp +0 -0
  2147. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_closest_point.cpp +0 -0
  2148. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_encoding.cpp +0 -0
  2149. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_space.cpp +0 -0
  2150. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_color_space_YCoCg.cpp +0 -0
  2151. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_common.cpp +0 -0
  2152. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_compatibility.cpp +0 -0
  2153. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_component_wise.cpp +0 -0
  2154. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_dual_quaternion.cpp +0 -0
  2155. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_easing.cpp +0 -0
  2156. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_euler_angle.cpp +0 -0
  2157. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_extend.cpp +0 -0
  2158. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_extended_min_max.cpp +0 -0
  2159. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_extented_min_max.cpp +0 -0
  2160. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_exterior_product.cpp +0 -0
  2161. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_exponential.cpp +0 -0
  2162. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_square_root.cpp +0 -0
  2163. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_fast_trigonometry.cpp +0 -0
  2164. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_functions.cpp +0 -0
  2165. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_gradient_paint.cpp +0 -0
  2166. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_handed_coordinate_space.cpp +0 -0
  2167. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_hash.cpp +0 -0
  2168. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_int_10_10_10_2.cpp +0 -0
  2169. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_integer.cpp +0 -0
  2170. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_intersect.cpp +0 -0
  2171. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_io.cpp +0 -0
  2172. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_load.cpp +0 -0
  2173. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_log_base.cpp +0 -0
  2174. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_cross_product.cpp +0 -0
  2175. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_decompose.cpp +0 -0
  2176. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_factorisation.cpp +0 -0
  2177. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_interpolation.cpp +0 -0
  2178. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_major_storage.cpp +0 -0
  2179. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_operation.cpp +0 -0
  2180. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_query.cpp +0 -0
  2181. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_matrix_transform_2d.cpp +0 -0
  2182. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_mixed_product.cpp +0 -0
  2183. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_norm.cpp +0 -0
  2184. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_normal.cpp +0 -0
  2185. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_normalize_dot.cpp +0 -0
  2186. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_optimum_pow.cpp +0 -0
  2187. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_orthonormalize.cpp +0 -0
  2188. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_pca.cpp +0 -0
  2189. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_perpendicular.cpp +0 -0
  2190. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_polar_coordinates.cpp +0 -0
  2191. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_projection.cpp +0 -0
  2192. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_quaternion.cpp +0 -0
  2193. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_random.cpp +0 -0
  2194. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_range.cpp +0 -0
  2195. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_rotate_normalized_axis.cpp +0 -0
  2196. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_rotate_vector.cpp +0 -0
  2197. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_scalar_multiplication.cpp +0 -0
  2198. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_scalar_relational.cpp +0 -0
  2199. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_simd_mat4.cpp +0 -0
  2200. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_simd_vec4.cpp +0 -0
  2201. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_spline.cpp +0 -0
  2202. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_string_cast.cpp +0 -0
  2203. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_texture.cpp +0 -0
  2204. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_type_aligned.cpp +0 -0
  2205. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_type_trait.cpp +0 -0
  2206. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_vec_swizzle.cpp +0 -0
  2207. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_vector_angle.cpp +0 -0
  2208. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_vector_query.cpp +0 -0
  2209. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/gtx/gtx_wrap.cpp +0 -0
  2210. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/perf/CMakeLists.txt +0 -0
  2211. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_div.cpp +0 -0
  2212. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_inverse.cpp +0 -0
  2213. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_mul.cpp +0 -0
  2214. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_mul_vector.cpp +0 -0
  2215. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/perf/perf_matrix_transpose.cpp +0 -0
  2216. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/test/perf/perf_vector_mul_matrix.cpp +0 -0
  2217. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/util/autoexp.txt +0 -0
  2218. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/util/autoexp.vc2010.dat +0 -0
  2219. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/util/glm.natvis +0 -0
  2220. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/glm/util/usertype.dat +0 -0
  2221. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/.clang-format +0 -0
  2222. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/.git +0 -0
  2223. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/.gitignore +0 -0
  2224. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/.travis.yml +0 -0
  2225. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/LICENSE +0 -0
  2226. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/README.md +0 -0
  2227. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/happly.h +0 -0
  2228. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/happly_logo.jpg +0 -0
  2229. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/test/CMakeLists.txt +0 -0
  2230. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/test/CMakeLists.txt.in +0 -0
  2231. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/test/main_test.cpp +0 -0
  2232. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf.ply +0 -0
  2233. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_ascii.ply +0 -0
  2234. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/happly/test/sampledata/platonic_shelf_big_endian.ply +0 -0
  2235. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/CMakeLists.txt +0 -0
  2236. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.editorconfig +0 -0
  2237. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.git +0 -0
  2238. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.gitattributes +0 -0
  2239. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.github/FUNDING.yml +0 -0
  2240. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.github/ISSUE_TEMPLATE/config.yml +0 -0
  2241. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.github/ISSUE_TEMPLATE/issue_template.yml +0 -0
  2242. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.github/pull_request_template.md +0 -0
  2243. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/build.yml +0 -0
  2244. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/scheduled.yml +0 -0
  2245. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.github/workflows/static-analysis.yml +0 -0
  2246. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/.gitignore +0 -0
  2247. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/LICENSE.txt +0 -0
  2248. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.cpp +0 -0
  2249. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_allegro5.h +0 -0
  2250. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.cpp +0 -0
  2251. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_android.h +0 -0
  2252. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.cpp +0 -0
  2253. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx10.h +0 -0
  2254. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.cpp +0 -0
  2255. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx11.h +0 -0
  2256. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.cpp +0 -0
  2257. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx12.h +0 -0
  2258. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.cpp +0 -0
  2259. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_dx9.h +0 -0
  2260. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.cpp +0 -0
  2261. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glfw.h +0 -0
  2262. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.cpp +0 -0
  2263. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_glut.h +0 -0
  2264. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.h +0 -0
  2265. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_metal.mm +0 -0
  2266. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.cpp +0 -0
  2267. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl2.h +0 -0
  2268. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.cpp +0 -0
  2269. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3.h +0 -0
  2270. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_opengl3_loader.h +0 -0
  2271. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.h +0 -0
  2272. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_osx.mm +0 -0
  2273. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.cpp +0 -0
  2274. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl2.h +0 -0
  2275. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.cpp +0 -0
  2276. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdl3.h +0 -0
  2277. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.cpp +0 -0
  2278. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer2.h +0 -0
  2279. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.cpp +0 -0
  2280. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_sdlrenderer3.h +0 -0
  2281. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.cpp +0 -0
  2282. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_vulkan.h +0 -0
  2283. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.cpp +0 -0
  2284. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_wgpu.h +0 -0
  2285. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.cpp +0 -0
  2286. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/imgui_impl_win32.h +0 -0
  2287. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/generate_spv.sh +0 -0
  2288. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.frag +0 -0
  2289. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/backends/vulkan/glsl_shader.vert +0 -0
  2290. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/docs/BACKENDS.md +0 -0
  2291. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/docs/CHANGELOG.txt +0 -0
  2292. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/docs/CONTRIBUTING.md +0 -0
  2293. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/docs/EXAMPLES.md +0 -0
  2294. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/docs/FAQ.md +0 -0
  2295. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/docs/FONTS.md +0 -0
  2296. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/docs/README.md +0 -0
  2297. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/docs/TODO.txt +0 -0
  2298. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/README.txt +0 -0
  2299. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/README.md +0 -0
  2300. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj +0 -0
  2301. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters +0 -0
  2302. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/imconfig_allegro5.h +0 -0
  2303. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_allegro5/main.cpp +0 -0
  2304. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/CMakeLists.txt +0 -0
  2305. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/.gitignore +0 -0
  2306. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/build.gradle +0 -0
  2307. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml +0 -0
  2308. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/app/src/main/java/MainActivity.kt +0 -0
  2309. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/build.gradle +0 -0
  2310. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/android/settings.gradle +0 -0
  2311. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_android_opengl3/main.cpp +0 -0
  2312. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/README.md +0 -0
  2313. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/example_apple_metal.xcodeproj/project.pbxproj +0 -0
  2314. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/Info-iOS.plist +0 -0
  2315. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard +0 -0
  2316. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/Info-macOS.plist +0 -0
  2317. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard +0 -0
  2318. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_metal/main.mm +0 -0
  2319. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_opengl2/example_apple_opengl2.xcodeproj/project.pbxproj +0 -0
  2320. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_apple_opengl2/main.mm +0 -0
  2321. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/Makefile.emscripten +0 -0
  2322. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/README.md +0 -0
  2323. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/main.cpp +0 -0
  2324. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_emscripten_wgpu/web/index.html +0 -0
  2325. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/Makefile +0 -0
  2326. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_metal/main.mm +0 -0
  2327. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/Makefile +0 -0
  2328. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/build_win32.bat +0 -0
  2329. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj +0 -0
  2330. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj.filters +0 -0
  2331. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl2/main.cpp +0 -0
  2332. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile +0 -0
  2333. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/Makefile.emscripten +0 -0
  2334. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/build_win32.bat +0 -0
  2335. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj +0 -0
  2336. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj.filters +0 -0
  2337. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_opengl3/main.cpp +0 -0
  2338. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/CMakeLists.txt +0 -0
  2339. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win32.bat +0 -0
  2340. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/build_win64.bat +0 -0
  2341. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj +0 -0
  2342. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters +0 -0
  2343. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glfw_vulkan/main.cpp +0 -0
  2344. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/Makefile +0 -0
  2345. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj +0 -0
  2346. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj.filters +0 -0
  2347. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_glut_opengl2/main.cpp +0 -0
  2348. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/Makefile +0 -0
  2349. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/build_win32.bat +0 -0
  2350. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_null/main.cpp +0 -0
  2351. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/build_win32.bat +0 -0
  2352. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj +0 -0
  2353. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj.filters +0 -0
  2354. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_directx11/main.cpp +0 -0
  2355. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_metal/Makefile +0 -0
  2356. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_metal/main.mm +0 -0
  2357. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/Makefile +0 -0
  2358. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/README.md +0 -0
  2359. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/build_win32.bat +0 -0
  2360. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj +0 -0
  2361. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj.filters +0 -0
  2362. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl2/main.cpp +0 -0
  2363. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/Makefile +0 -0
  2364. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/Makefile.emscripten +0 -0
  2365. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/README.md +0 -0
  2366. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/build_win32.bat +0 -0
  2367. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj +0 -0
  2368. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj.filters +0 -0
  2369. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_opengl3/main.cpp +0 -0
  2370. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/Makefile +0 -0
  2371. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/README.md +0 -0
  2372. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/build_win32.bat +0 -0
  2373. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj +0 -0
  2374. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2.vcxproj.filters +0 -0
  2375. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_sdlrenderer2/main.cpp +0 -0
  2376. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/build_win32.bat +0 -0
  2377. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj +0 -0
  2378. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters +0 -0
  2379. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl2_vulkan/main.cpp +0 -0
  2380. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile +0 -0
  2381. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/Makefile.emscripten +0 -0
  2382. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/README.md +0 -0
  2383. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/build_win32.bat +0 -0
  2384. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj +0 -0
  2385. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj.filters +0 -0
  2386. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_opengl3/main.cpp +0 -0
  2387. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/Makefile +0 -0
  2388. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/build_win32.bat +0 -0
  2389. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj +0 -0
  2390. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3.vcxproj.filters +0 -0
  2391. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_sdl3_sdlrenderer3/main.cpp +0 -0
  2392. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/build_win32.bat +0 -0
  2393. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj +0 -0
  2394. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj.filters +0 -0
  2395. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx10/main.cpp +0 -0
  2396. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/build_win32.bat +0 -0
  2397. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj +0 -0
  2398. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters +0 -0
  2399. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx11/main.cpp +0 -0
  2400. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/build_win32.bat +0 -0
  2401. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj +0 -0
  2402. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj.filters +0 -0
  2403. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx12/main.cpp +0 -0
  2404. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/build_win32.bat +0 -0
  2405. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj +0 -0
  2406. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj.filters +0 -0
  2407. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_directx9/main.cpp +0 -0
  2408. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/build_win32.bat +0 -0
  2409. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj +0 -0
  2410. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/example_win32_opengl3.vcxproj.filters +0 -0
  2411. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/example_win32_opengl3/main.cpp +0 -0
  2412. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/imgui_examples.sln +0 -0
  2413. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h +0 -0
  2414. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/emscripten/shell_minimal.html +0 -0
  2415. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/COPYING.txt +0 -0
  2416. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3.h +0 -0
  2417. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/include/GLFW/glfw3native.h +0 -0
  2418. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib +0 -0
  2419. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib +0 -0
  2420. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/README.txt +0 -0
  2421. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.c +0 -0
  2422. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/examples/libs/usynergy/uSynergy.h +0 -0
  2423. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imconfig.h +0 -0
  2424. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imgui.cpp +0 -0
  2425. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imgui.h +0 -0
  2426. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imgui_demo.cpp +0 -0
  2427. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imgui_draw.cpp +0 -0
  2428. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imgui_internal.h +0 -0
  2429. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imgui_tables.cpp +0 -0
  2430. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imgui_widgets.cpp +0 -0
  2431. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imstb_rectpack.h +0 -0
  2432. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imstb_textedit.h +0 -0
  2433. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/imstb_truetype.h +0 -0
  2434. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/README.txt +0 -0
  2435. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/README.txt +0 -0
  2436. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.cpp +0 -0
  2437. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/cpp/imgui_stdlib.h +0 -0
  2438. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/README.txt +0 -0
  2439. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.gdb +0 -0
  2440. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natstepfilter +0 -0
  2441. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/debuggers/imgui.natvis +0 -0
  2442. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
  2443. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/DroidSans.ttf +0 -0
  2444. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Karla-Regular.ttf +0 -0
  2445. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyClean.ttf +0 -0
  2446. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/ProggyTiny.ttf +0 -0
  2447. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
  2448. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/fonts/binary_to_compressed_c.cpp +0 -0
  2449. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/README.md +0 -0
  2450. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.cpp +0 -0
  2451. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/freetype/imgui_freetype.h +0 -0
  2452. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/imgui/imgui/misc/single_file/imgui_single_file.h +0 -0
  2453. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/json/CMakeLists.txt +0 -0
  2454. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/json/LICENSE.MIT +0 -0
  2455. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/json/README.md +0 -0
  2456. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/json/include/nlohmann/json.hpp +0 -0
  2457. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/stb/CMakeLists.txt +0 -0
  2458. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/stb/stb_image.h +0 -0
  2459. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/stb/stb_image_write.h +0 -0
  2460. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/deps/stb/stb_impl.cpp +0 -0
  2461. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/examples/demo-app/CMakeLists.txt +0 -0
  2462. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/examples/demo-app/demo_app.cpp +0 -0
  2463. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.cpp +0 -0
  2464. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/examples/demo-app/simple_dot_mesh_parser.h +0 -0
  2465. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/examples/demo-app/surface_mesh_io.cpp +0 -0
  2466. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/examples/demo-app/surface_mesh_io.h +0 -0
  2467. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/affine_remapper.h +0 -0
  2468. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/affine_remapper.ipp +0 -0
  2469. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/camera_parameters.h +0 -0
  2470. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/camera_parameters.ipp +0 -0
  2471. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/camera_view.h +0 -0
  2472. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/camera_view.ipp +0 -0
  2473. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/color_image_quantity.h +0 -0
  2474. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/color_management.h +0 -0
  2475. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/color_quantity.h +0 -0
  2476. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/color_quantity.ipp +0 -0
  2477. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/color_render_image_quantity.h +0 -0
  2478. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/colors.h +0 -0
  2479. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/combining_hash_functions.h +0 -0
  2480. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/context.h +0 -0
  2481. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/curve_network.h +0 -0
  2482. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/curve_network.ipp +0 -0
  2483. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/curve_network_color_quantity.h +0 -0
  2484. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/curve_network_quantity.h +0 -0
  2485. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/curve_network_scalar_quantity.h +0 -0
  2486. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/curve_network_vector_quantity.h +0 -0
  2487. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/depth_render_image_quantity.h +0 -0
  2488. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/disjoint_sets.h +0 -0
  2489. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/file_helpers.h +0 -0
  2490. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/floating_quantities.h +0 -0
  2491. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/floating_quantity.h +0 -0
  2492. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/floating_quantity_structure.h +0 -0
  2493. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/floating_quantity_structure.ipp +0 -0
  2494. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/fullscreen_artist.h +0 -0
  2495. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/group.h +0 -0
  2496. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/histogram.h +0 -0
  2497. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/image_quantity.h +0 -0
  2498. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/image_quantity_base.h +0 -0
  2499. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/imgui_config.h +0 -0
  2500. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/implicit_helpers.h +0 -0
  2501. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/implicit_helpers.ipp +0 -0
  2502. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/internal.h +0 -0
  2503. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/messages.h +0 -0
  2504. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/parameterization_quantity.h +0 -0
  2505. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/parameterization_quantity.ipp +0 -0
  2506. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/persistent_value.h +0 -0
  2507. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/pick.h +0 -0
  2508. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/pick.ipp +0 -0
  2509. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/point_cloud.ipp +0 -0
  2510. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/point_cloud_color_quantity.h +0 -0
  2511. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/point_cloud_parameterization_quantity.h +0 -0
  2512. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/point_cloud_quantity.h +0 -0
  2513. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/point_cloud_scalar_quantity.h +0 -0
  2514. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/point_cloud_vector_quantity.h +0 -0
  2515. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/polyscope.h +0 -0
  2516. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/quantity.h +0 -0
  2517. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/ragged_nested_array.h +0 -0
  2518. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/raw_color_alpha_render_image_quantity.h +0 -0
  2519. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/raw_color_render_image_quantity.h +0 -0
  2520. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/color_maps.h +0 -0
  2521. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/colormap_defs.h +0 -0
  2522. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/engine.h +0 -0
  2523. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/engine.ipp +0 -0
  2524. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/ground_plane.h +0 -0
  2525. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/managed_buffer.h +0 -0
  2526. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/managed_buffer.ipp +0 -0
  2527. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/material_defs.h +0 -0
  2528. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/materials.h +0 -0
  2529. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/mock_opengl/mock_gl_engine.h +0 -0
  2530. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/gl_engine.h +0 -0
  2531. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/gl_engine_egl.h +0 -0
  2532. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/gl_engine_glfw.h +0 -0
  2533. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/gl_shaders.h +0 -0
  2534. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/common.h +0 -0
  2535. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/cylinder_shaders.h +0 -0
  2536. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/gizmo_shaders.h +0 -0
  2537. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/grid_shaders.h +0 -0
  2538. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/ground_plane_shaders.h +0 -0
  2539. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/histogram_shaders.h +0 -0
  2540. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/lighting_shaders.h +0 -0
  2541. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/ribbon_shaders.h +0 -0
  2542. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/rules.h +0 -0
  2543. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/texture_draw_shaders.h +0 -0
  2544. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/vector_shaders.h +0 -0
  2545. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/opengl/shaders/volume_mesh_shaders.h +0 -0
  2546. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/shader_builder.h +0 -0
  2547. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render/templated_buffers.h +0 -0
  2548. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/render_image_quantity_base.h +0 -0
  2549. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/scalar_image_quantity.h +0 -0
  2550. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/scalar_quantity.h +0 -0
  2551. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/scalar_quantity.ipp +0 -0
  2552. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/scalar_render_image_quantity.h +0 -0
  2553. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/scaled_value.h +0 -0
  2554. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/screenshot.h +0 -0
  2555. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/simple_triangle_mesh.h +0 -0
  2556. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/simple_triangle_mesh.ipp +0 -0
  2557. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/slice_plane.h +0 -0
  2558. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/standardize_data_array.h +0 -0
  2559. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/structure.h +0 -0
  2560. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/structure.ipp +0 -0
  2561. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/surface_color_quantity.h +0 -0
  2562. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/surface_mesh.ipp +0 -0
  2563. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/surface_mesh_quantity.h +0 -0
  2564. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/surface_parameterization_quantity.h +0 -0
  2565. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/surface_vector_quantity.h +0 -0
  2566. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/transformation_gizmo.h +0 -0
  2567. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/utilities.h +0 -0
  2568. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/vector_quantity.h +0 -0
  2569. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/vector_quantity.ipp +0 -0
  2570. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/view.h +0 -0
  2571. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_grid.h +0 -0
  2572. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_grid.ipp +0 -0
  2573. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_grid_quantity.h +0 -0
  2574. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_grid_scalar_quantity.h +0 -0
  2575. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_mesh.h +0 -0
  2576. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_mesh.ipp +0 -0
  2577. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_mesh_color_quantity.h +0 -0
  2578. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_mesh_quantity.h +0 -0
  2579. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_mesh_scalar_quantity.h +0 -0
  2580. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/volume_mesh_vector_quantity.h +0 -0
  2581. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/weak_handle.h +0 -0
  2582. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/include/polyscope/widget.h +0 -0
  2583. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/file2c/file2cpp.c +0 -0
  2584. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/format_all_macOS.sh +0 -0
  2585. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/generate_colormap_constant.py +0 -0
  2586. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/material_images/.gitignore +0 -0
  2587. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/material_images/bin2vector.c +0 -0
  2588. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/material_images/concrete_seamless.jpg +0 -0
  2589. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/material_images/image2material.cpp +0 -0
  2590. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/material_images/imagesrgb2material.cpp +0 -0
  2591. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/misc/material_images/render_material.blend +0 -0
  2592. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/CMakeLists.txt +0 -0
  2593. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/camera_parameters.cpp +0 -0
  2594. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/camera_view.cpp +0 -0
  2595. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/color_image_quantity.cpp +0 -0
  2596. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/color_management.cpp +0 -0
  2597. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/color_render_image_quantity.cpp +0 -0
  2598. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/curve_network.cpp +0 -0
  2599. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/curve_network_color_quantity.cpp +0 -0
  2600. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/curve_network_scalar_quantity.cpp +0 -0
  2601. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/curve_network_vector_quantity.cpp +0 -0
  2602. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/depth_render_image_quantity.cpp +0 -0
  2603. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/disjoint_sets.cpp +0 -0
  2604. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/floating_quantity.cpp +0 -0
  2605. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/floating_quantity_structure.cpp +0 -0
  2606. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/fullscreen_artist.cpp +0 -0
  2607. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/group.cpp +0 -0
  2608. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/histogram.cpp +0 -0
  2609. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/image_quantity_base.cpp +0 -0
  2610. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/imgui_config.cpp +0 -0
  2611. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/internal.cpp +0 -0
  2612. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/marching_cubes.cpp +0 -0
  2613. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/messages.cpp +0 -0
  2614. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/persistent_value.cpp +0 -0
  2615. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/pick.cpp +0 -0
  2616. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/point_cloud_color_quantity.cpp +0 -0
  2617. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/point_cloud_parameterization_quantity.cpp +0 -0
  2618. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/point_cloud_scalar_quantity.cpp +0 -0
  2619. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/point_cloud_vector_quantity.cpp +0 -0
  2620. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/polyscope.cpp +0 -0
  2621. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/quantity.cpp +0 -0
  2622. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/raw_color_alpha_render_image_quantity.cpp +0 -0
  2623. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/raw_color_render_image_quantity.cpp +0 -0
  2624. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_candy.cpp +0 -0
  2625. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_ceramic.cpp +0 -0
  2626. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_clay.cpp +0 -0
  2627. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_flat.cpp +0 -0
  2628. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_font_cousine_regular.cpp +0 -0
  2629. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_font_lato_regular.cpp +0 -0
  2630. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_jade.cpp +0 -0
  2631. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_mud.cpp +0 -0
  2632. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_normal.cpp +0 -0
  2633. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/bindata_wax.cpp +0 -0
  2634. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/bindata/concrete_seamless.cpp +0 -0
  2635. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/color_maps.cpp +0 -0
  2636. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/engine.cpp +0 -0
  2637. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/managed_buffer.cpp +0 -0
  2638. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/materials.cpp +0 -0
  2639. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/gl_engine_egl.cpp +0 -0
  2640. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/gl_engine_glfw.cpp +0 -0
  2641. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/common.cpp +0 -0
  2642. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/cylinder_shaders.cpp +0 -0
  2643. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/gizmo_shaders.cpp +0 -0
  2644. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/grid_shaders.cpp +0 -0
  2645. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/ground_plane_shaders.cpp +0 -0
  2646. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/histogram_shaders.cpp +0 -0
  2647. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/ribbon_shaders.cpp +0 -0
  2648. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/rules.cpp +0 -0
  2649. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/texture_draw_shaders.cpp +0 -0
  2650. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/vector_shaders.cpp +0 -0
  2651. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/opengl/shaders/volume_mesh_shaders.cpp +0 -0
  2652. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/shader_builder.cpp +0 -0
  2653. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render/templated_buffers.cpp +0 -0
  2654. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/render_image_quantity_base.cpp +0 -0
  2655. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/scalar_image_quantity.cpp +0 -0
  2656. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/scalar_render_image_quantity.cpp +0 -0
  2657. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/screenshot.cpp +0 -0
  2658. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/simple_triangle_mesh.cpp +0 -0
  2659. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/slice_plane.cpp +0 -0
  2660. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/state.cpp +0 -0
  2661. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/structure.cpp +0 -0
  2662. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/surface_color_quantity.cpp +0 -0
  2663. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/surface_parameterization_quantity.cpp +0 -0
  2664. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/surface_vector_quantity.cpp +0 -0
  2665. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/transformation_gizmo.cpp +0 -0
  2666. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/utilities.cpp +0 -0
  2667. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/view.cpp +0 -0
  2668. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/volume_grid.cpp +0 -0
  2669. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/volume_grid_scalar_quantity.cpp +0 -0
  2670. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/volume_mesh.cpp +0 -0
  2671. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/volume_mesh_color_quantity.cpp +0 -0
  2672. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/volume_mesh_scalar_quantity.cpp +0 -0
  2673. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/volume_mesh_vector_quantity.cpp +0 -0
  2674. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/weak_handle.cpp +0 -0
  2675. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/src/widget.cpp +0 -0
  2676. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/CMakeLists.txt +0 -0
  2677. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/CMakeLists.txt.in +0 -0
  2678. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/include/polyscope_test.h +0 -0
  2679. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/array_adaptors_test.cpp +0 -0
  2680. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/camera_view_test.cpp +0 -0
  2681. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/combo_test.cpp +0 -0
  2682. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/curve_network_test.cpp +0 -0
  2683. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/floating_test.cpp +0 -0
  2684. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/group_test.cpp +0 -0
  2685. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/interop_and_serialization_test.cpp +0 -0
  2686. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/main_test.cpp +0 -0
  2687. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/misc_test.cpp +0 -0
  2688. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/volume_grid_test.cpp +0 -0
  2689. {polyscope-2.2.0 → polyscope-2.3.0}/deps/polyscope/test/src/volume_mesh_test.cpp +0 -0
  2690. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/CMakeLists.txt +0 -0
  2691. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/attr.h +0 -0
  2692. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/buffer_info.h +0 -0
  2693. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/cast.h +0 -0
  2694. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/chrono.h +0 -0
  2695. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/common.h +0 -0
  2696. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/complex.h +0 -0
  2697. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/detail/class.h +0 -0
  2698. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/detail/common.h +0 -0
  2699. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/detail/descr.h +0 -0
  2700. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/detail/init.h +0 -0
  2701. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/detail/internals.h +0 -0
  2702. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/detail/type_caster_base.h +0 -0
  2703. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/detail/typeid.h +0 -0
  2704. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/eigen/common.h +0 -0
  2705. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/eigen/matrix.h +0 -0
  2706. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/eigen/tensor.h +0 -0
  2707. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/eigen.h +0 -0
  2708. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/embed.h +0 -0
  2709. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/eval.h +0 -0
  2710. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/functional.h +0 -0
  2711. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/gil.h +0 -0
  2712. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/gil_safe_call_once.h +0 -0
  2713. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/iostream.h +0 -0
  2714. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/numpy.h +0 -0
  2715. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/operators.h +0 -0
  2716. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/options.h +0 -0
  2717. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/pybind11.h +0 -0
  2718. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/pytypes.h +0 -0
  2719. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/stl/filesystem.h +0 -0
  2720. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/stl.h +0 -0
  2721. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/stl_bind.h +0 -0
  2722. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
  2723. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/include/pybind11/typing.h +0 -0
  2724. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/CMakeLists.txt +0 -0
  2725. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/constructor_stats.h +0 -0
  2726. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/local_bindings.h +0 -0
  2727. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/object.h +0 -0
  2728. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/pybind11_tests.h +0 -0
  2729. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -0
  2730. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -0
  2731. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -0
  2732. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -0
  2733. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -0
  2734. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -0
  2735. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -0
  2736. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_embed/CMakeLists.txt +0 -0
  2737. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tests/test_exceptions.h +0 -0
  2738. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tools/FindCatch.cmake +0 -0
  2739. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tools/FindEigen3.cmake +0 -0
  2740. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tools/FindPythonLibsNew.cmake +0 -0
  2741. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tools/JoinPaths.cmake +0 -0
  2742. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tools/pybind11Common.cmake +0 -0
  2743. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tools/pybind11NewTools.cmake +0 -0
  2744. {polyscope-2.2.0 → polyscope-2.3.0}/deps/pybind11/tools/pybind11Tools.cmake +0 -0
  2745. {polyscope-2.2.0 → polyscope-2.3.0}/setup.cfg +0 -0
  2746. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/camera_view.cpp +0 -0
  2747. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/curve_network.cpp +0 -0
  2748. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/floating_quantities.cpp +0 -0
  2749. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/implicit_helpers.cpp +0 -0
  2750. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/managed_buffer.cpp +0 -0
  2751. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/utils.h +0 -0
  2752. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/volume_grid.cpp +0 -0
  2753. {polyscope-2.2.0 → polyscope-2.3.0}/src/cpp/volume_mesh.cpp +0 -0
  2754. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/__init__.py +0 -0
  2755. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/camera_view.py +0 -0
  2756. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/common.py +0 -0
  2757. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/curve_network.py +0 -0
  2758. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/device_interop.py +0 -0
  2759. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/floating_quantities.py +0 -0
  2760. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/global_floating_quantity_structure.py +0 -0
  2761. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/imgui/__init__.py +0 -0
  2762. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/implicit_helpers.py +0 -0
  2763. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/managed_buffer.py +0 -0
  2764. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/structure.py +0 -0
  2765. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/volume_grid.py +0 -0
  2766. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope/volume_mesh.py +0 -0
  2767. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope.egg-info/SOURCES.txt +0 -0
  2768. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope.egg-info/dependency_links.txt +0 -0
  2769. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope.egg-info/not-zip-safe +0 -0
  2770. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope.egg-info/requires.txt +0 -0
  2771. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope.egg-info/top_level.txt +0 -0
  2772. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope_bindings/__init__.pyi +0 -0
  2773. {polyscope-2.2.0 → polyscope-2.3.0}/src/polyscope_bindings/imgui.pyi +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: polyscope
3
- Version: 2.2.0
3
+ Version: 2.3.0
4
4
  Summary: Polyscope: A viewer and user interface for 3D data.
5
5
  Home-page: https://polyscope.run
6
6
  Author: Nicholas Sharp
@@ -30,14 +30,16 @@ polyscope-py should work out-of-the-box on any combination of Python 3.5-3.12 an
30
30
  This repo is configured with CI on github actions.
31
31
 
32
32
  - By default, all commits to the main branch build & run tests. Use `[ci skip]` to skip this.
33
- - Tagging a commit with `[ci build]` causes it to also build all precompiled wheels and upload them as artifacts.
34
- - Creating a tagged version like `v1.2.3` will build wheels as above, and ALSO automatically upload them to pypi as described below.
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
35
 
36
36
  ### Deploy a new version
37
37
 
38
- - Commit the desired version to the `master` branch, be sure the version string in `setup.py` corresponds to the new version number. Use the `[ci build]` tag in the commit message to trigger builds, which should take about an hour.
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
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
40
  - While you're waiting, update the docs, including the changelog.
41
- - Tag the commit with a tag like `v1.2.3`, matching the version in `setup.py`. This will kick off a new github actions build which deploys the wheels to PyPI after compilation.
42
- - If we are still doing builds with multiple rounds of actions, it may be necessary to manually upload some of the generated wheels. Download from the github actions `Summary/Artifacs` pane, then upload with `twine upload * --skip-existing`
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
+
43
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.
@@ -64,8 +64,10 @@ extern bool hideWindowAfterShow;
64
64
 
65
65
  // Behavior of the ground plane
66
66
  extern GroundPlaneMode groundPlaneMode;
67
+ extern GroundPlaneHeightMode groundPlaneHeightMode;
67
68
  extern bool groundPlaneEnabled; // deprecated, but kept and respected for compatability. use groundPlaneMode.
68
69
  extern ScaledValue<float> groundPlaneHeightFactor;
70
+ extern float groundPlaneHeight;
69
71
  extern int shadowBlurIters;
70
72
  extern float shadowDarkness;
71
73
 
@@ -102,6 +102,13 @@ public:
102
102
  void setPointRadiusQuantity(std::string name, bool autoScale = true);
103
103
  void clearPointRadiusQuantity();
104
104
 
105
+ // === Set transparency alpha from a scalar quantity
106
+ // effect is multiplicative with other transparency values
107
+ // values are clamped to [0,1]
108
+ void setTransparencyQuantity(PointCloudScalarQuantity* quantity);
109
+ void setTransparencyQuantity(std::string name);
110
+ void clearTransparencyQuantity();
111
+
105
112
  // The points that make up this point cloud
106
113
  // Normally, the values are stored here. But if the render buffer
107
114
  // is being manually updated, they will live only in the render buffer
@@ -174,9 +181,16 @@ private:
174
181
 
175
182
  // Manage varying point size
176
183
  // which (scalar) quantity to set point size from
184
+ // TODO make these PersistentValue<>?
177
185
  std::string pointRadiusQuantityName = ""; // empty string means none
178
186
  bool pointRadiusQuantityAutoscale = true;
179
187
  PointCloudScalarQuantity& resolvePointRadiusQuantity(); // helper
188
+
189
+ // Manage per-element transparency
190
+ // which (scalar) quantity to set point size from
191
+ // TODO make these PersistentValue<>?
192
+ std::string transparencyQuantityName = ""; // empty string means none
193
+ PointCloudScalarQuantity& resolveTransparencyQuantity(); // helper
180
194
  };
181
195
 
182
196
 
@@ -43,9 +43,7 @@ QuantityS<S>* QuantityS<S>::setEnabled(bool newEnabled) {
43
43
  }
44
44
  }
45
45
 
46
- if (isEnabled()) {
47
- requestRedraw();
48
- }
46
+ requestRedraw();
49
47
 
50
48
  return this;
51
49
  }
@@ -19,6 +19,7 @@ extern const ShaderStageSpecification FLEX_POINTQUAD_FRAG_SHADER;
19
19
 
20
20
  // Rules specific to spheres
21
21
  extern const ShaderReplacementRule SPHERE_PROPAGATE_VALUE;
22
+ extern const ShaderReplacementRule SPHERE_PROPAGATE_VALUEALPHA;
22
23
  extern const ShaderReplacementRule SPHERE_PROPAGATE_VALUE2;
23
24
  extern const ShaderReplacementRule SPHERE_PROPAGATE_COLOR;
24
25
  extern const ShaderReplacementRule SPHERE_VARIABLE_SIZE;
@@ -24,6 +24,7 @@ extern const ShaderReplacementRule MESH_BACKFACE_NORMAL_FLIP;
24
24
  extern const ShaderReplacementRule MESH_BACKFACE_DIFFERENT;
25
25
  extern const ShaderReplacementRule MESH_BACKFACE_DARKEN;
26
26
  extern const ShaderReplacementRule MESH_PROPAGATE_VALUE;
27
+ extern const ShaderReplacementRule MESH_PROPAGATE_VALUEALPHA;
27
28
  extern const ShaderReplacementRule MESH_PROPAGATE_FLAT_VALUE;
28
29
  extern const ShaderReplacementRule MESH_PROPAGATE_INT;
29
30
  extern const ShaderReplacementRule MESH_PROPAGATE_VALUE2;
@@ -29,6 +29,7 @@ namespace polyscope {
29
29
  class SurfaceVertexColorQuantity;
30
30
  class SurfaceFaceColorQuantity;
31
31
  class SurfaceTextureColorQuantity;
32
+ class SurfaceScalarQuantity;
32
33
  class SurfaceVertexScalarQuantity;
33
34
  class SurfaceFaceScalarQuantity;
34
35
  class SurfaceEdgeScalarQuantity;
@@ -176,6 +177,13 @@ public:
176
177
  template <class V>
177
178
  void updateVertexPositions2D(const V& newPositions2D);
178
179
 
180
+ // === Set transparency alpha from a scalar quantity
181
+ // effect is multiplicative with other transparency values
182
+ // values are clamped to [0,1]
183
+ void setTransparencyQuantity(SurfaceScalarQuantity* quantity);
184
+ void setTransparencyQuantity(std::string name);
185
+ void clearTransparencyQuantity();
186
+
179
187
 
180
188
  // === Indexing conventions
181
189
 
@@ -376,6 +384,13 @@ private:
376
384
  void buildHalfedgeInfoGui(size_t heInd);
377
385
  void buildCornerInfoGui(size_t cInd);
378
386
 
387
+ // Manage per-element transparency
388
+ // which (scalar) quantity to set point size from
389
+ // TODO make these PersistentValue<>?
390
+ std::string transparencyQuantityName = ""; // empty string means none
391
+ SurfaceScalarQuantity& resolveTransparencyQuantity(); // helper
392
+
393
+
379
394
  // ==== Gui implementation details
380
395
 
381
396
  std::shared_ptr<render::ShaderProgram> program;
@@ -28,8 +28,11 @@ public:
28
28
  virtual std::string niceName() override;
29
29
  virtual void refresh() override;
30
30
 
31
- protected:
31
+ virtual std::shared_ptr<render::AttributeBuffer> getAttributeBuffer() = 0;
32
+
32
33
  const std::string definedOn;
34
+
35
+ protected:
33
36
  std::shared_ptr<render::ShaderProgram> program;
34
37
 
35
38
  // Helpers
@@ -47,6 +50,8 @@ public:
47
50
 
48
51
  virtual void createProgram() override;
49
52
 
53
+ virtual std::shared_ptr<render::AttributeBuffer> getAttributeBuffer() override;
54
+
50
55
  void buildVertexInfoGUI(size_t vInd) override;
51
56
  };
52
57
 
@@ -61,7 +66,7 @@ public:
61
66
  DataType dataType_ = DataType::STANDARD);
62
67
 
63
68
  virtual void createProgram() override;
64
-
69
+ virtual std::shared_ptr<render::AttributeBuffer> getAttributeBuffer() override;
65
70
  void buildFaceInfoGUI(size_t fInd) override;
66
71
  };
67
72
 
@@ -76,7 +81,7 @@ public:
76
81
  DataType dataType_ = DataType::STANDARD);
77
82
 
78
83
  virtual void createProgram() override;
79
-
84
+ virtual std::shared_ptr<render::AttributeBuffer> getAttributeBuffer() override;
80
85
  void buildEdgeInfoGUI(size_t edgeInd) override;
81
86
  };
82
87
 
@@ -90,7 +95,7 @@ public:
90
95
  DataType dataType_ = DataType::STANDARD);
91
96
 
92
97
  virtual void createProgram() override;
93
-
98
+ virtual std::shared_ptr<render::AttributeBuffer> getAttributeBuffer() override;
94
99
  void buildHalfedgeInfoGUI(size_t heInd) override;
95
100
  };
96
101
 
@@ -104,7 +109,7 @@ public:
104
109
  DataType dataType_ = DataType::STANDARD);
105
110
 
106
111
  virtual void createProgram() override;
107
-
112
+ virtual std::shared_ptr<render::AttributeBuffer> getAttributeBuffer() override;
108
113
  void buildCornerInfoGUI(size_t heInd) override;
109
114
  };
110
115
 
@@ -119,6 +124,8 @@ public:
119
124
  DataType dataType_ = DataType::STANDARD);
120
125
 
121
126
  virtual void createProgram() override;
127
+ virtual std::shared_ptr<render::AttributeBuffer> getAttributeBuffer() override;
128
+
122
129
 
123
130
  protected:
124
131
  SurfaceParameterizationQuantity& param;
@@ -13,6 +13,7 @@ enum class BackgroundView { None = 0 };
13
13
  enum class ProjectionMode { Perspective = 0, Orthographic };
14
14
  enum class TransparencyMode { None = 0, Simple, Pretty };
15
15
  enum class GroundPlaneMode { None, Tile, TileReflection, ShadowOnly };
16
+ enum class GroundPlaneHeightMode { Automatic = 0, Manual };
16
17
  enum class BackFacePolicy { Identical, Different, Custom, Cull };
17
18
 
18
19
  enum class PointRenderMode { Sphere = 0, Quad };
@@ -40,9 +40,10 @@ std::string promptForFilename(std::string initName) {
40
40
  using namespace std::placeholders;
41
41
 
42
42
  // Register the callback which creates the UI and does the hard work
43
- char* textBuff = new char[2048];
44
- snprintf(textBuff, sizeof(textBuff), "%s", initName.c_str());
45
- auto func = std::bind(filenamePromptCallback, textBuff, 2048);
43
+ const size_t BUFF_LEN = 2048;
44
+ char* textBuff = new char[BUFF_LEN];
45
+ snprintf(textBuff, BUFF_LEN, "%s", initName.c_str());
46
+ auto func = std::bind(filenamePromptCallback, textBuff, BUFF_LEN);
46
47
  pushContext(func);
47
48
 
48
49
  std::string stringOut(textBuff);
@@ -31,7 +31,9 @@ std::string screenshotExtension = ".png";
31
31
  // Ground plane / shadows
32
32
  bool groundPlaneEnabled = true;
33
33
  GroundPlaneMode groundPlaneMode = GroundPlaneMode::TileReflection;
34
+ GroundPlaneHeightMode groundPlaneHeightMode = GroundPlaneHeightMode::Automatic;
34
35
  ScaledValue<float> groundPlaneHeightFactor = 0;
36
+ float groundPlaneHeight = 0.;
35
37
  int shadowBlurIters = 2;
36
38
  float shadowDarkness = 0.25;
37
39
 
@@ -185,6 +185,10 @@ void PointCloud::setPointProgramGeometryAttributes(render::ShaderProgram& p) {
185
185
  PointCloudScalarQuantity& radQ = resolvePointRadiusQuantity();
186
186
  p.setAttribute("a_pointRadius", radQ.values.getRenderAttributeBuffer());
187
187
  }
188
+ if (transparencyQuantityName != "") {
189
+ PointCloudScalarQuantity& transparencyQ = resolveTransparencyQuantity();
190
+ p.setAttribute("a_valueAlpha", transparencyQ.values.getRenderAttributeBuffer());
191
+ }
188
192
  }
189
193
 
190
194
  std::string PointCloud::getShaderNameForRenderMode() {
@@ -212,6 +216,9 @@ std::vector<std::string> PointCloud::addPointCloudRules(std::vector<std::string>
212
216
  else if (getPointRenderMode() == PointRenderMode::Quad)
213
217
  initRules.push_back("SPHERE_CULLPOS_FROM_CENTER_QUAD");
214
218
  }
219
+ if (transparencyQuantityName != "") {
220
+ initRules.push_back("SPHERE_PROPAGATE_VALUEALPHA");
221
+ }
215
222
  }
216
223
  return initRules;
217
224
  }
@@ -268,6 +275,11 @@ void PointCloud::buildCustomUI() {
268
275
  }
269
276
 
270
277
  void PointCloud::buildCustomOptionsUI() {
278
+ if (render::buildMaterialOptionsGui(material.get())) {
279
+ material.manuallyChanged();
280
+ setMaterial(material.get()); // trigger the other updates that happen on set()
281
+ }
282
+
271
283
  if (ImGui::BeginMenu("Point Render Mode")) {
272
284
 
273
285
  for (const PointRenderMode& m : {PointRenderMode::Sphere, PointRenderMode::Quad}) {
@@ -305,9 +317,21 @@ void PointCloud::buildCustomOptionsUI() {
305
317
  ImGui::EndMenu();
306
318
  }
307
319
 
308
- if (render::buildMaterialOptionsGui(material.get())) {
309
- material.manuallyChanged();
310
- setMaterial(material.get()); // trigger the other updates that happen on set()
320
+ // transparency quantity
321
+ if (ImGui::BeginMenu("Per-Point Transparency")) {
322
+
323
+ if (ImGui::MenuItem("none", nullptr, transparencyQuantityName == "")) clearTransparencyQuantity();
324
+ ImGui::Separator();
325
+
326
+ for (auto& q : quantities) {
327
+ PointCloudScalarQuantity* scalarQ = dynamic_cast<PointCloudScalarQuantity*>(q.second.get());
328
+ if (scalarQ != nullptr) {
329
+ if (ImGui::MenuItem(scalarQ->name.c_str(), nullptr, transparencyQuantityName == scalarQ->name))
330
+ setTransparencyQuantity(scalarQ);
331
+ }
332
+ }
333
+
334
+ ImGui::EndMenu();
311
335
  }
312
336
  }
313
337
 
@@ -362,6 +386,42 @@ void PointCloud::clearPointRadiusQuantity() {
362
386
  refresh();
363
387
  }
364
388
 
389
+ void PointCloud::setTransparencyQuantity(PointCloudScalarQuantity* quantity) {
390
+ setTransparencyQuantity(quantity->name);
391
+ }
392
+
393
+ void PointCloud::setTransparencyQuantity(std::string name) {
394
+ transparencyQuantityName = name;
395
+ resolveTransparencyQuantity(); // do it once, just so we fail fast if it doesn't exist
396
+
397
+ // if transparency is disabled, enable it
398
+ if (options::transparencyMode == TransparencyMode::None) {
399
+ options::transparencyMode = TransparencyMode::Pretty;
400
+ }
401
+
402
+ refresh();
403
+ }
404
+
405
+ void PointCloud::clearTransparencyQuantity() {
406
+ transparencyQuantityName = "";
407
+ refresh();
408
+ }
409
+
410
+ PointCloudScalarQuantity& PointCloud::resolveTransparencyQuantity() {
411
+ PointCloudScalarQuantity* transparencyScalarQ = nullptr;
412
+ PointCloudQuantity* anyQ = getQuantity(transparencyQuantityName);
413
+ if (anyQ != nullptr) {
414
+ transparencyScalarQ = dynamic_cast<PointCloudScalarQuantity*>(anyQ);
415
+ if (transparencyScalarQ == nullptr) {
416
+ exception("Cannot populate per-element transparency from quantity [" + name + "], it is not a scalar quantity");
417
+ }
418
+ } else {
419
+ exception("Cannot populate per-element transparency from quantity [" + name + "], it does not exist");
420
+ }
421
+
422
+ return *transparencyScalarQ;
423
+ }
424
+
365
425
  // === Quantities
366
426
 
367
427
  // Quantity default methods
@@ -196,7 +196,18 @@ void GroundPlane::draw(bool isRedraw) {
196
196
  double bboxBottom = sign == 1.0 ? std::get<0>(state::boundingBox)[iP] : std::get<1>(state::boundingBox)[iP];
197
197
  double bboxHeight = std::get<1>(state::boundingBox)[iP] - std::get<0>(state::boundingBox)[iP];
198
198
  double heightEPS = state::lengthScale * 1e-4;
199
- double groundHeight = bboxBottom - sign * (options::groundPlaneHeightFactor.asAbsolute() + heightEPS);
199
+
200
+ double groundHeight = -777;
201
+ switch (options::groundPlaneHeightMode) {
202
+ case GroundPlaneHeightMode::Automatic: {
203
+ groundHeight = bboxBottom - sign * (options::groundPlaneHeightFactor.asAbsolute() + heightEPS);
204
+ break;
205
+ }
206
+ case GroundPlaneHeightMode::Manual: {
207
+ groundHeight = options::groundPlaneHeight;
208
+ break;
209
+ }
210
+ }
200
211
 
201
212
  // Viewport
202
213
  glm::vec4 viewport = render::engine->getCurrentViewport();
@@ -387,6 +398,16 @@ void GroundPlane::buildGui() {
387
398
  return "";
388
399
  };
389
400
 
401
+ auto heightModeName = [](const GroundPlaneHeightMode& m) -> std::string {
402
+ switch (m) {
403
+ case GroundPlaneHeightMode::Automatic:
404
+ return "Automatic";
405
+ case GroundPlaneHeightMode::Manual:
406
+ return "Manual";
407
+ }
408
+ return "";
409
+ };
410
+
390
411
  ImGui::SetNextItemOpen(false, ImGuiCond_FirstUseEver);
391
412
  if (ImGui::TreeNode("Ground Plane")) {
392
413
 
@@ -404,7 +425,39 @@ void GroundPlane::buildGui() {
404
425
  }
405
426
  ImGui::PopItemWidth();
406
427
 
407
- if (ImGui::SliderFloat("Height", options::groundPlaneHeightFactor.getValuePtr(), -1.0, 1.0)) requestRedraw();
428
+ // Height
429
+ ImGui::PushItemWidth(80);
430
+ switch (options::groundPlaneHeightMode) {
431
+ case GroundPlaneHeightMode::Automatic:
432
+ if (ImGui::SliderFloat("##HeightValue", options::groundPlaneHeightFactor.getValuePtr(), -1.0, 1.0))
433
+ requestRedraw();
434
+ break;
435
+ case GroundPlaneHeightMode::Manual:
436
+ int iP;
437
+ float sign;
438
+ std::tie(iP, sign) = getGroundPlaneAxisAndSign();
439
+ double bboxBottom = sign == 1.0 ? std::get<0>(state::boundingBox)[iP] : std::get<1>(state::boundingBox)[iP];
440
+ double bboxHeight = std::get<1>(state::boundingBox)[iP] - std::get<0>(state::boundingBox)[iP];
441
+ if (ImGui::SliderFloat("##HeightValue", &options::groundPlaneHeight, bboxBottom - 0.5 * bboxHeight,
442
+ bboxBottom + bboxHeight)) {
443
+ requestRedraw();
444
+ }
445
+ break;
446
+ }
447
+ ImGui::PopItemWidth();
448
+ ImGui::SameLine();
449
+ ImGui::PushItemWidth(100);
450
+ if (ImGui::BeginCombo("Height##Mode", heightModeName(options::groundPlaneHeightMode).c_str())) {
451
+ for (GroundPlaneHeightMode m : {GroundPlaneHeightMode::Automatic, GroundPlaneHeightMode::Manual}) {
452
+ std::string mName = heightModeName(m);
453
+ if (ImGui::Selectable(mName.c_str(), options::groundPlaneHeightMode == m)) {
454
+ options::groundPlaneHeightMode = m;
455
+ requestRedraw();
456
+ }
457
+ }
458
+ ImGui::EndCombo();
459
+ }
460
+ ImGui::PopItemWidth();
408
461
 
409
462
  switch (options::groundPlaneMode) {
410
463
  case GroundPlaneMode::None:
@@ -49,7 +49,7 @@ void initializeRenderEngine(std::string backend) {
49
49
 
50
50
  #ifdef POLYSCOPE_BACKEND_OPENGL3_GLFW_ENABLED
51
51
  // First try GLFW, if available
52
- backend = "openGL3_glfw";
52
+ engineBackendName = "openGL3_glfw";
53
53
  try {
54
54
  backend_openGL3::initializeRenderEngine_glfw();
55
55
  initSucces = true;
@@ -64,7 +64,7 @@ void initializeRenderEngine(std::string backend) {
64
64
 
65
65
  #ifdef POLYSCOPE_BACKEND_OPENGL3_EGL_ENABLED
66
66
  // Then, try EGL if available
67
- backend = "openGL3_egl";
67
+ engineBackendName = "openGL3_egl";
68
68
  try {
69
69
  backend_openGL3::initializeRenderEngine_egl();
70
70
  initSucces = true;
@@ -1981,6 +1981,7 @@ void MockGLEngine::populateDefaultShadersAndRules() {
1981
1981
  registerShaderRule("MESH_BACKFACE_DIFFERENT", MESH_BACKFACE_DIFFERENT);
1982
1982
  registerShaderRule("MESH_BACKFACE_DARKEN", MESH_BACKFACE_DARKEN);
1983
1983
  registerShaderRule("MESH_PROPAGATE_VALUE", MESH_PROPAGATE_VALUE);
1984
+ registerShaderRule("MESH_PROPAGATE_VALUEALPHA", MESH_PROPAGATE_VALUEALPHA);
1984
1985
  registerShaderRule("MESH_PROPAGATE_FLAT_VALUE", MESH_PROPAGATE_FLAT_VALUE);
1985
1986
  registerShaderRule("MESH_PROPAGATE_VALUE2", MESH_PROPAGATE_VALUE2);
1986
1987
  registerShaderRule("MESH_PROPAGATE_TCOORD", MESH_PROPAGATE_TCOORD);
@@ -2000,6 +2001,7 @@ void MockGLEngine::populateDefaultShadersAndRules() {
2000
2001
 
2001
2002
  // sphere things
2002
2003
  registerShaderRule("SPHERE_PROPAGATE_VALUE", SPHERE_PROPAGATE_VALUE);
2004
+ registerShaderRule("SPHERE_PROPAGATE_VALUEALPHA", SPHERE_PROPAGATE_VALUEALPHA);
2003
2005
  registerShaderRule("SPHERE_PROPAGATE_VALUE2", SPHERE_PROPAGATE_VALUE2);
2004
2006
  registerShaderRule("SPHERE_PROPAGATE_COLOR", SPHERE_PROPAGATE_COLOR);
2005
2007
  registerShaderRule("SPHERE_CULLPOS_FROM_CENTER", SPHERE_CULLPOS_FROM_CENTER);
@@ -2540,6 +2540,7 @@ void GLEngine::populateDefaultShadersAndRules() {
2540
2540
  registerShaderRule("MESH_BACKFACE_DIFFERENT", MESH_BACKFACE_DIFFERENT);
2541
2541
  registerShaderRule("MESH_BACKFACE_DARKEN", MESH_BACKFACE_DARKEN);
2542
2542
  registerShaderRule("MESH_PROPAGATE_VALUE", MESH_PROPAGATE_VALUE);
2543
+ registerShaderRule("MESH_PROPAGATE_VALUEALPHA", MESH_PROPAGATE_VALUEALPHA);
2543
2544
  registerShaderRule("MESH_PROPAGATE_FLAT_VALUE", MESH_PROPAGATE_FLAT_VALUE);
2544
2545
  registerShaderRule("MESH_PROPAGATE_VALUE2", MESH_PROPAGATE_VALUE2);
2545
2546
  registerShaderRule("MESH_PROPAGATE_TCOORD", MESH_PROPAGATE_TCOORD);
@@ -2559,6 +2560,7 @@ void GLEngine::populateDefaultShadersAndRules() {
2559
2560
 
2560
2561
  // sphere things
2561
2562
  registerShaderRule("SPHERE_PROPAGATE_VALUE", SPHERE_PROPAGATE_VALUE);
2563
+ registerShaderRule("SPHERE_PROPAGATE_VALUEALPHA", SPHERE_PROPAGATE_VALUEALPHA);
2562
2564
  registerShaderRule("SPHERE_PROPAGATE_VALUE2", SPHERE_PROPAGATE_VALUE2);
2563
2565
  registerShaderRule("SPHERE_PROPAGATE_COLOR", SPHERE_PROPAGATE_COLOR);
2564
2566
  registerShaderRule("SPHERE_CULLPOS_FROM_CENTER", SPHERE_CULLPOS_FROM_CENTER);
@@ -238,7 +238,7 @@ const ShaderReplacementRule TRANSPARENCY_STRUCTURE (
238
238
  uniform float u_transparency;
239
239
  )"},
240
240
  {"GENERATE_ALPHA", R"(
241
- alphaOut = u_transparency;
241
+ alphaOut *= u_transparency;
242
242
  )"},
243
243
  },
244
244
  /* uniforms */ {
@@ -257,7 +257,7 @@ const ShaderReplacementRule TRANSPARENCY_PEEL_STRUCTURE (
257
257
  uniform vec2 u_viewportDim;
258
258
  )"},
259
259
  {"GENERATE_ALPHA", R"(
260
- alphaOut = u_transparency;
260
+ alphaOut *= u_transparency;
261
261
  )"},
262
262
  {"GLOBAL_FRAGMENT_FILTER", R"(
263
263
  // assumption: "float depth" must be already set
@@ -386,6 +386,37 @@ const ShaderReplacementRule SPHERE_PROPAGATE_VALUE (
386
386
  /* textures */ {}
387
387
  );
388
388
 
389
+ const ShaderReplacementRule SPHERE_PROPAGATE_VALUEALPHA (
390
+ /* rule name */ "SPHERE_PROPAGATE_VALUEALPHA",
391
+ { /* replacement sources */
392
+ {"VERT_DECLARATIONS", R"(
393
+ in float a_valueAlpha;
394
+ out float a_valueAlphaToGeom;
395
+ )"},
396
+ {"VERT_ASSIGNMENTS", R"(
397
+ a_valueAlphaToGeom = a_valueAlpha;
398
+ )"},
399
+ {"GEOM_DECLARATIONS", R"(
400
+ in float a_valueAlphaToGeom[];
401
+ out float a_valueAlphaToFrag;
402
+ )"},
403
+ {"GEOM_PER_EMIT", R"(
404
+ a_valueAlphaToFrag = a_valueAlphaToGeom[0];
405
+ )"},
406
+ {"FRAG_DECLARATIONS", R"(
407
+ in float a_valueAlphaToFrag;
408
+ )"},
409
+ {"GENERATE_ALPHA", R"(
410
+ alphaOut *= clamp(a_valueAlphaToFrag, 0.f, 1.f);
411
+ )"},
412
+ },
413
+ /* uniforms */ {},
414
+ /* attributes */ {
415
+ {"a_valueAlpha", RenderDataType::Float},
416
+ },
417
+ /* textures */ {}
418
+ );
419
+
389
420
  const ShaderReplacementRule SPHERE_PROPAGATE_VALUE2 (
390
421
  /* rule name */ "SPHERE_PROPAGATE_VALUE2",
391
422
  { /* replacement sources */
@@ -256,6 +256,30 @@ const ShaderReplacementRule MESH_PROPAGATE_VALUE (
256
256
  /* textures */ {}
257
257
  );
258
258
 
259
+ const ShaderReplacementRule MESH_PROPAGATE_VALUEALPHA (
260
+ /* rule name */ "MESH_PROPAGATE_VALUEALPHA",
261
+ { /* replacement sources */
262
+ {"VERT_DECLARATIONS", R"(
263
+ in float a_valueAlpha;
264
+ out float a_valueAlphaToFrag;
265
+ )"},
266
+ {"VERT_ASSIGNMENTS", R"(
267
+ a_valueAlphaToFrag = a_valueAlpha;
268
+ )"},
269
+ {"FRAG_DECLARATIONS", R"(
270
+ in float a_valueAlphaToFrag;
271
+ )"},
272
+ {"GENERATE_ALPHA", R"(
273
+ alphaOut *= clamp(a_valueAlphaToFrag, 0.f, 1.f);
274
+ )"},
275
+ },
276
+ /* uniforms */ {},
277
+ /* attributes */ {
278
+ {"a_valueAlpha", RenderDataType::Float},
279
+ },
280
+ /* textures */ {}
281
+ );
282
+
259
283
  const ShaderReplacementRule MESH_PROPAGATE_FLAT_VALUE (
260
284
  /* rule name */ "MESH_PROPAGATE_FLAT_VALUE",
261
285
  { /* replacement sources */
@@ -826,6 +826,11 @@ void SurfaceMesh::setMeshGeometryAttributes(render::ShaderProgram& p) {
826
826
  if (wantsCullPosition()) {
827
827
  p.setAttribute("a_cullPos", faceCenters.getIndexedRenderAttributeBuffer(triangleFaceInds));
828
828
  }
829
+
830
+ if (transparencyQuantityName != "") {
831
+ SurfaceScalarQuantity& transparencyQ = resolveTransparencyQuantity();
832
+ p.setAttribute("a_valueAlpha", transparencyQ.getAttributeBuffer());
833
+ }
829
834
  }
830
835
 
831
836
  void SurfaceMesh::setMeshPickAttributes(render::ShaderProgram& p) {
@@ -1023,6 +1028,10 @@ std::vector<std::string> SurfaceMesh::addSurfaceMeshRules(std::vector<std::strin
1023
1028
  if (wantsCullPosition()) {
1024
1029
  initRules.push_back("MESH_PROPAGATE_CULLPOS");
1025
1030
  }
1031
+
1032
+ if (transparencyQuantityName != "") {
1033
+ initRules.push_back("MESH_PROPAGATE_VALUEALPHA");
1034
+ }
1026
1035
  }
1027
1036
  return initRules;
1028
1037
  }
@@ -1300,6 +1309,26 @@ void SurfaceMesh::buildCustomOptionsUI() {
1300
1309
  setBackFacePolicy(BackFacePolicy::Cull);
1301
1310
  ImGui::EndMenu();
1302
1311
  }
1312
+
1313
+ // transparency quantity
1314
+ if (ImGui::BeginMenu("Per-Element Transparency")) {
1315
+
1316
+ if (ImGui::MenuItem("none", nullptr, transparencyQuantityName == "")) clearTransparencyQuantity();
1317
+ ImGui::Separator();
1318
+
1319
+ for (auto& q : quantities) {
1320
+ SurfaceScalarQuantity* scalarQ = dynamic_cast<SurfaceScalarQuantity*>(q.second.get());
1321
+ if (scalarQ != nullptr) {
1322
+ if (scalarQ->definedOn == "vertex" || scalarQ->definedOn == "face" || scalarQ->definedOn == "corner") {
1323
+
1324
+ if (ImGui::MenuItem(scalarQ->name.c_str(), nullptr, transparencyQuantityName == scalarQ->name))
1325
+ setTransparencyQuantity(scalarQ);
1326
+ }
1327
+ }
1328
+ }
1329
+
1330
+ ImGui::EndMenu();
1331
+ }
1303
1332
  }
1304
1333
 
1305
1334
  void SurfaceMesh::recomputeGeometryIfPopulated() {
@@ -1412,6 +1441,46 @@ long long int SurfaceMesh::selectVertex() {
1412
1441
  return returnVertInd;
1413
1442
  }
1414
1443
 
1444
+ void SurfaceMesh::setTransparencyQuantity(SurfaceScalarQuantity* quantity) { setTransparencyQuantity(quantity->name); }
1445
+
1446
+ void SurfaceMesh::setTransparencyQuantity(std::string name) {
1447
+ transparencyQuantityName = name;
1448
+ resolveTransparencyQuantity(); // do it once, just so we fail fast if it doesn't exist
1449
+
1450
+ // if transparency is disabled, enable it
1451
+ if (options::transparencyMode == TransparencyMode::None) {
1452
+ options::transparencyMode = TransparencyMode::Pretty;
1453
+ }
1454
+
1455
+ refresh();
1456
+ }
1457
+
1458
+ void SurfaceMesh::clearTransparencyQuantity() {
1459
+ transparencyQuantityName = "";
1460
+ refresh();
1461
+ }
1462
+
1463
+ SurfaceScalarQuantity& SurfaceMesh::resolveTransparencyQuantity() {
1464
+ SurfaceScalarQuantity* transparencyScalarQ = nullptr;
1465
+ SurfaceMeshQuantity* anyQ = getQuantity(transparencyQuantityName);
1466
+ if (anyQ != nullptr) {
1467
+ transparencyScalarQ = dynamic_cast<SurfaceScalarQuantity*>(anyQ);
1468
+ if (transparencyScalarQ == nullptr) {
1469
+ exception("Cannot populate per-element transparency from quantity [" + name + "], it is not a scalar quantity");
1470
+ }
1471
+
1472
+ if (!(transparencyScalarQ->definedOn == "vertex" || transparencyScalarQ->definedOn == "face" ||
1473
+ transparencyScalarQ->definedOn == "corner")) {
1474
+ exception("Cannot populate per-element transparency from quantity [" + name +
1475
+ "], only vertex, face, and corner quantities are supported");
1476
+ }
1477
+
1478
+ } else {
1479
+ exception("Cannot populate per-element transparency from quantity [" + name + "], it does not exist");
1480
+ }
1481
+
1482
+ return *transparencyScalarQ;
1483
+ }
1415
1484
 
1416
1485
  void SurfaceMesh::markEdgesAsUsed() {
1417
1486
  if (edgesHaveBeenUsed) return;