Commit cbc7870e authored by Boris Mühmer's avatar Boris Mühmer
Browse files

changed access to get full coverage again

parent 30c8b610
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -29,8 +29,8 @@ func TestIcosahedronSubdivide(t *testing.T) {
		} else {
			ico, _ = Subdivide(ico)
		}
		cv := len(ico.vs)
		cf := len(ico.fs)
		t.Logf("Icosahedron: subdivision %d, %d vertices, %d faces", ico.level, cv, cf)
		cv := len(ico.Vertices())
		cf := len(ico.Faces())
		t.Logf("Icosahedron: subdivision %d, %d vertices, %d faces", ico.Level(), cv, cf)
	}
}