We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f4201 commit 1e5af93Copy full SHA for 1e5af93
tests/test_all.py
@@ -160,9 +160,8 @@ def test_harmonic():
160
161
def test_harmonic_integrated_from_laplacian_and_mass():
162
V, F = triangulated_square()
163
- lin = igl.edge_lengths(V, F)
164
- L = igl.cotmatrix_intrinsic(lin, F)
165
- M = igl.massmatrix_intrinsic(lin, F)
+ L = igl.cotmatrix(V, F)
+ M = igl.massmatrix(V, F, igl.MASSMATRIX_TYPE_VORONOI)
166
Q = igl.harmonic_integrated_from_laplacian_and_mass(L, M, k=1)
167
Q = igl.harmonic_integrated_from_laplacian_and_mass(L, M, k=2)
168
0 commit comments