mayavi icon indicating copy to clipboard operation
mayavi copied to clipboard

3D visualization of scientific data in Python

Results 144 mayavi issues
Sort by recently updated
recently updated
newest added

VTK version 9.3.0 produces an error in mayavi. The following code ``` from mayavi import mlab import numpy as np x = np.array([1, 1, 1, 2, 2, 2, 3, 3,...

Hi folks, We are making some changes to the VTK Python wrappers that might affect MayaVi. Please see this discussion: https://github.com/pyvista/pyvista/discussions/5470#discussioncomment-8193109

When using `mlab.savefig(, size=(x, y))` the resolution of the saved image is about 10x that specified: ```python from mayavi import mlab f = mlab.figure() mlab.test_plot3d() mlab.savefig('savetest.png', size=(100,80)) ``` resolution: ```...

The import of QWheelEvent from QtGui was accidentally dropped with https://github.com/enthought/mayavi/commit/502c3f06934d7d731eef8aff07fd2cba0ac60662. The current logic in `__init__` implies this is also only needed for Qt4 (`if is_qt4:...`). However, https://github.com/enthought/mayavi/commit/539aba1530dbb271782a9c06e05f8d0bb76902c5 also seems...

I'm using Mayavi in a Python script to ingest an STL CAD file. Although the CAD file renders correctly, I experience odd clipping effects when I zoom in too far...

In the dummy program below I'm just trying to control the properties of some graphics objects with a slider. The program works as intended but I would like to be...

I'm running an animation that displays orbital trajectory of a probe using two dimensional array with position vectors. All the physics is pre-calculated before animation, which results in an array...

My environment is Windows-10, Python 3.11, ... Requirement already satisfied: numpy in c:\programs\python311\lib\site-packages (from mayavi) (1.25.0) Collecting pyface>=6.1.1 (from mayavi) Using cached pyface-8.0.0-py3-none-any.whl (1.3 MB) Requirement already satisfied: pygments in...

Hello all, I have been testing out a couple of the test scripts and found out that the `on_mouse_click` only properly registers when my main screen is my monitor screen....

I created a fresh conda environment with: `conda create -n pymayavi python=3.7 vtk=8 pyqt=5` then `conda activate pymayavi` `conda install mayavi` This creates an environment with: ``` $ conda list:...