We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 325d111 commit ac80b8aCopy full SHA for ac80b8a
tests/test_basic.py
@@ -2326,9 +2326,16 @@ def fun(v):
2326
pass
2327
2328
def test_edge_flaps(self):
2329
- # TODO
2330
e, emap, ef, ei = igl.edge_flaps(self.f2)
2331
- pass
+ self.assertTrue(e.shape[1] == ef.shape[1] == ei.shape[1] == 2)
+ 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)
2339
2340
def test_circulation(self):
2341
0 commit comments