Bane Sullivan

Results 203 issues of Bane Sullivan

We need to refactor a lot of internal code to leverage PyVista over the native VTK dataset adapters and custom array converters that we have in here which should drastically...

Low Hanging Fruit

We should leverage PCA for the `RotationTool` class's rotation estimation algorithm - this might have better performance and be more accurate

The documentation has fallen seriously behind. There needs to be updates to deprectated examples and an automated system needs to be developed for testing examples on the website. ### To...

help wanted
docs

We need an elegant solution to loading geo-referenced datasets from a PostGIS database into ParaView. This issue will be a place to discuss what support for PostGIS will look like.

Feature Request

I'm trying to make a plotter class based on the `itkwidgets.Viewer` class and I need ways to append datasets and their properties to the scene. ```py import pyvista as pv...

question

Is it possible to render points as spheres? Here's a good example dataset: ```py from pyvista import examples from itkwidgets import view mesh = examples.download_lidar() view(geometries=mesh) ``` if not, this...

enhancement

Could we color a mesh/geometry using a passed RGB(A) array on the point/cell data of the mesh? Example: https://docs.pyvista.org/examples/00-load/read-image.html?highlight=rgb#read-image-files

enhancement
question

Feature request: allow passing custom made Matplotlib colormaps ```py import matplotlib.pyplot as plt cmap = plt.cm.get_cmap("viridis", 5) ``` then pass that colormap to the `Viewer` (the goal isn't necessarily catecorical...

enhancement

Would it be possible to add labelled points support much like [this PyVista example](https://docs.pyvista.org/examples/02-plot/labels.html#sphx-glr-examples-02-plot-labels-py) ![sphx_glr_labels_003](https://user-images.githubusercontent.com/22067021/61959298-5946d600-af80-11e9-8a0c-d89474d7847b.png) ![sphx_glr_labels_001](https://user-images.githubusercontent.com/22067021/61959310-5e0b8a00-af80-11e9-8016-f813ec90d337.png)

enhancement

I just updated to the latest version (master branch) and I'm seeing strange artifacts on most meshes I plot where a pink band is shown: ```py from pyvista import examples...

bug