Skip to content

Commit ac80b8a

Browse files
committed
Edge_flaps test
1 parent 325d111 commit ac80b8a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

tests/test_basic.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -2326,9 +2326,16 @@ def fun(v):
23262326
pass
23272327

23282328
def test_edge_flaps(self):
2329-
# TODO
23302329
e, emap, ef, ei = igl.edge_flaps(self.f2)
2331-
pass
2330+
self.assertTrue(e.shape[1] == ef.shape[1] == ei.shape[1] == 2)
2331+
self.assertTrue(e.shape[0] == ef.shape[0] == ei.shape[0])
2332+
self.assertTrue(emap.shape[0] == self.f2.shape[0] * 3)
2333+
self.assertTrue(np.min(e) >= 0 and np.max(e) < self.v2.shape[0])
2334+
self.assertTrue(e.flags.c_contiguous)
2335+
self.assertTrue(emap.flags.c_contiguous)
2336+
self.assertTrue(ef.flags.c_contiguous)
2337+
self.assertTrue(ei.flags.c_contiguous)
2338+
self.assertTrue(e.dtype == emap.dtype == ef.dtype == ei.dtype == np.int)
23322339

23332340
def test_circulation(self):
23342341
pass

0 commit comments

Comments
 (0)