Skip to content
Snippets Groups Projects
Commit e4d972ac authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: Regression test

parent 86e7056c
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment