Results 387 comments of Alex Kaszynski

@dionhaefner, notebook within zip is empty. Could you paste it (ideally as a script) here?

Reproduced the bug on my end. Should be resolved in the next patch release. For the time being copy before cleaning: ```py cleaned = grid.copy().clean() ``` BTW, this appears(!?) to...

You're correct on both counts. Normalize is non-ideal behavior and ``n_colors`` with opacity is broken. I've pushed a fix for this at: https://github.com/pyvista/pyvista/pull/906 If you're fine with using the `master`...

> I tried your patch and it does indeed fix both problems in my case… but introduced a new one. The half part of the ellipsoid that is supposed to...

Seems that enabling depth peeling on `vtk>=9.0.0` is your best bet: ```py import numpy as np import pyvista as pv ellipsoid = pv.ParametricEllipsoid(10, 5, 5) ellipsoid.point_arrays["color"] = np.linspace(0,10,len(ellipsoid.points)) ellipsoid.point_arrays["opacity"] =...

@Sunil7545, It looks like operations with non-manifold surfaces aren't always successful. For example, the following leads to a segfault: ```python import pyvista sphere = pyvista.Sphere() plane = pyvista.Plane(i_size=1.5, j_size=1.5).triangulate() (sphere...

@user27182, type hints have been on my "would love to have" list for a while since I have a few downstream projects that need it. If you figure out the...

Yes please, tough lately to get time for PR reviews, but it's high priority and I'll just need to be reminded.

> Is it possible to install Pyansys using Anaconda at the moment? Yes, using `pip`. If you're only able to install it via `conda` however, that means we really do...

You're exactly right regarding the labels. We switched over to the new labels visualizer that is supposed to hide labels when they overlap. It works well for a handful of...