Skip to content

Commit

Permalink
update deps to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
nmwsharp committed Aug 31, 2020
1 parent 06e6a75 commit e86d0e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/geometry-central
Submodule geometry-central updated 59 files
+8 −4 README.md
+14 −4 cmake/EigenChecker.cmake
+4 −0 docs/docs/build/building.md
+10 −3 docs/docs/build/dependencies.md
+7 −4 docs/docs/index.md
+8 −1 docs/docs/surface/geometry/geometry.md
+32 −4 docs/docs/surface/surface_mesh/basics.md
+33 −0 docs/docs/surface/surface_mesh/containers.md
+15 −1 docs/docs/surface/surface_mesh/elements.md
+42 −0 docs/docs/surface/surface_mesh/navigation.md
+64 −0 docs/docs/surface/utilities/io.md
+43 −0 docs/docs/utilities/eigenmap.md
+1 −2 docs/docs/utilities/miscellaneous.md
+17 −2 docs/docs/utilities/vector2.md
+17 −3 docs/docs/utilities/vector3.md
+1 −1 docs/mkdocs.yml
+49 −0 include/geometrycentral/numerical/linear_algebra_types.h
+4 −14 include/geometrycentral/numerical/linear_algebra_utilities.h
+19 −3 include/geometrycentral/numerical/linear_algebra_utilities.ipp
+5 −0 include/geometrycentral/surface/halfedge_element_types.h
+27 −2 include/geometrycentral/surface/halfedge_element_types.ipp
+5 −5 include/geometrycentral/surface/halfedge_factories.h
+2 −2 include/geometrycentral/surface/halfedge_mesh.h
+6 −0 include/geometrycentral/surface/manifold_surface_mesh.h
+6 −0 include/geometrycentral/surface/manifold_surface_mesh.ipp
+7 −0 include/geometrycentral/surface/mesh_graph_algorithms.h
+13 −1 include/geometrycentral/surface/surface_mesh.h
+42 −0 include/geometrycentral/surface/surface_mesh.ipp
+52 −0 include/geometrycentral/surface/surface_mesh_factories.h
+28 −0 include/geometrycentral/surface/surface_mesh_factories.ipp
+4 −0 include/geometrycentral/surface/vertex_position_geometry.h
+20 −0 include/geometrycentral/surface/vertex_position_geometry.ipp
+140 −0 include/geometrycentral/utilities/eigen_interop_helpers.h
+3 −22 include/geometrycentral/utilities/element.h
+1 −1 include/geometrycentral/utilities/element.ipp
+102 −4 include/geometrycentral/utilities/mesh_data.h
+47 −6 include/geometrycentral/utilities/mesh_data.ipp
+1 −1 include/geometrycentral/utilities/quaternion.h
+1 −1 include/geometrycentral/utilities/utilities.h
+4 −0 include/geometrycentral/utilities/vector2.h
+14 −3 include/geometrycentral/utilities/vector2.ipp
+5 −0 include/geometrycentral/utilities/vector3.h
+15 −6 include/geometrycentral/utilities/vector3.ipp
+3 −1 src/CMakeLists.txt
+8 −36 src/surface/halfedge_factories.cpp
+1 −1 src/surface/heat_method_distance.cpp
+17 −3 src/surface/manifold_surface_mesh.cpp
+49 −2 src/surface/mesh_graph_algorithms.cpp
+5 −5 src/surface/meshio.cpp
+67 −41 src/surface/signpost_intrinsic_triangulation.cpp
+8 −4 src/surface/simple_polygon_mesh.cpp
+27 −1 src/surface/surface_mesh.cpp
+68 −0 src/surface/surface_mesh_factories.cpp
+1 −1 src/surface/tufted_laplacian.cpp
+3 −3 src/utilities/quaternion.cpp
+3 −2 test/CMakeLists.txt
+106 −0 test/src/eigen_interop_helpers_test.cpp
+75 −0 test/src/halfedge_geometry_test.cpp
+385 −1 test/src/halfedge_mesh_test.cpp
2 changes: 1 addition & 1 deletion deps/polyscope

0 comments on commit e86d0e2

Please sign in to comment.