You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am casting the width/pts_size into a float (instead of the np.float32 it would have been) and converting the vertices/points into an array of floats (instead of np.float32). My guess is that traitlets or numpy default conversion/type checking has changed. (I have checked, and you can also change the type to np.float64, and I am not getting any errors anymore.)
The text was updated successfully, but these errors were encountered:
If you are using numpy>=2.1 and use the k3d backend I get the following error:
Code:
Error:
I have traced the issue to the
vedo.backends
file. If I change the following lines, the issue is not present anymore.line 316 onward to:
and lines from 243 onward:
I am casting the width/pts_size into a float (instead of the np.float32 it would have been) and converting the vertices/points into an array of floats (instead of np.float32). My guess is that
traitlets
ornumpy
default conversion/type checking has changed. (I have checked, and you can also change the type to np.float64, and I am not getting any errors anymore.)The text was updated successfully, but these errors were encountered: