s3dlib
s3dlib copied to clipboard
Results
2
s3dlib issues
Sort by
recently updated
recently updated
newest added
Hi, looks like the library is no longer compatible with recent versions of matplotlib. ```python import s3dlib.surface as s3d import numpy as np surface = s3d.Surface3DCollection(np.array([[0,0,0],[1,0,0],[1,1,0],[0,1,0]]), [np.arange(4),]) ``` produces ```...
Curretnly s3dlib uses matplotlib 3.0.2, current version of matplotlib is 3.8.1, and that seems to raise some conflicts when I try to run the tutorial code in README. ``` ---------------------------------------------------------------------------...