Closed griff10000 closed 3 years ago
It looks like the edges
has now been changed to facets
. So,
bei = mesh.boundary_edges
becomes
bei = mesh.boundary_facets
I didn't mean to break backwards compatibility. I'll add mesh.boundary_edges in the next release.
Just upgraded
meshplex
and noticed that the code:mesh = meshplex.MeshTri(pts, cells)
bei = mesh.boundary_edges
throws the following error:
AttributeError: 'MeshTri' object has no attribute 'boundary_edges'
I have been using the data
bei
to identify boundary nodes.Has this facility been replaced by something else?