Hi,
in Ipython I issue:
from compas.datastructures import Mesh
from compas.datastructures import subdivision
mesh = Mesh.from_polyhedron(6)
subd = subdivision.mesh_subdivide(mesh, scheme=‘catmullclark’, k=5)
this fails, because:
“AttributeError: ‘Mesh’ object has no attribute ‘split_edge’”
As I am just starting with this library it is entirely possible that I did something wrong, but as the example on https://compas-dev.github.io/main/examples/mesh-subd-modeling.html is slightly off, I suspected that this is an issue that fell through the cracks of a fast development pace …
thx.
Sander