diff --git a/tests/test_mesh.py b/tests/test_mesh.py index 20ff3cdb772878e1ece865f6fc98f7b813fa1824..243944b2e3feb1b476792a3fa319a595a8143ae7 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)