Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Closed
Description
Summary
In matplotlib <v3.6TriMesh
could be imported via
frommatplotlib.triimportTriMesh
since v3.6 i get the following error:
ImportError:cannotimport'TriMesh'from'matplotlib.tri' ...
The correct import now is
frommatplotlib.collectionsimportTriMesh
Proposed fix
maybe allowTriMesh
import frommatplotlib.tri
for backward-compatibility reasons?