Loading icosahedron/icosahedron_test.go +3 −3 Original line number Diff line number Diff line Loading @@ -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) } } Loading
icosahedron/icosahedron_test.go +3 −3 Original line number Diff line number Diff line Loading @@ -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) } }