From e4d972ac778b871ff423835d332667dfc70be9ff Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Tue, 25 Jun 2019 16:48:36 +0930 Subject: [PATCH] TEST: Regression test --- tests/test_mesh.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_mesh.py b/tests/test_mesh.py index 20ff3cdb7..243944b2e 100644 --- a/tests/test_mesh.py +++ b/tests/test_mesh.py @@ -433,6 +433,7 @@ def test_mesh_different_winding_orders(): mnofix.addVertices(verts2, key='v2', fixWinding=False) mfix .addVertices(verts1, key='v1', fixWinding=True) mfix .addVertices(verts2, key='v2', fixWinding=True) + mfix .addVertices(verts1, key='v3', fixWinding=True, select=False) mnofix.vertices = 'v1' assert np.all(mnofix.indices == tris) @@ -443,3 +444,5 @@ def test_mesh_different_winding_orders(): assert np.all(mfix.indices == tris) mfix.vertices = 'v2' assert np.all(mfix.indices == trisfixed) + mfix.vertices = 'v3' + assert np.all(mfix.indices == tris) -- GitLab