Skip to content

Commit 1e5af93

Browse files
committed
tests: update harmonic integrated test
1 parent 40f4201 commit 1e5af93

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/test_all.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,8 @@ def test_harmonic():
160160

161161
def test_harmonic_integrated_from_laplacian_and_mass():
162162
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)
163+
L = igl.cotmatrix(V, F)
164+
M = igl.massmatrix(V, F, igl.MASSMATRIX_TYPE_VORONOI)
166165
Q = igl.harmonic_integrated_from_laplacian_and_mass(L, M, k=1)
167166
Q = igl.harmonic_integrated_from_laplacian_and_mass(L, M, k=2)
168167

0 commit comments

Comments
 (0)