-
Axes don't scale when a figure is saved with mlab.savefig and magnification > 1. This is reproducible with version 4.4.0 from anaconda as well as the current git master branch on OS X using the pyqt, …
-
This is my code:
`import numpy as np
import mayavi.mlab as mlab
x, y = np.ogrid[-2:2:20j, -2:2:20j]
z = x * np.exp( - x**2 - y**2)
pl = mlab.surf(x, y, z)
mlab.axes(xlabel='x', ylabel='y', z…
-
I want to keep Z axis up. In [1] I've found
`from tvtk.api import tvtk`
`fig = mlab.gcf()`
`fig.scene.interactor.interactor_style = tvtk.InteractorStyleTerrain()`
does that.
This code works as…
-
**Issue by:** gege251
**Original date:** 2022-12-01 11:12:28 UTC
**Originally opened as:** mlabs-haskell/trustless-sidechain/issues/290
**Original assignees:**
**Status on 2023-06-20:** open
## D…
-
This occurs on OSX 10.9.5 (AMD 6750M graphics card) with mayavi 4.4.2.
A simple test of off screen rendering and image saving, such as:
```
from mayavi import mlab
mlab.options.offscreen = True
mla…
-
This testcase:
```
from numpy import pi, sin, cos, mgrid
dphi, dtheta = pi/250.0, pi/250.0
[phi,theta] = mgrid[0:pi+dphi*1.5:dphi,0:2*pi+dtheta*1.5:dtheta]
m0 = 4; m1 = 3; m2 = 2; m3 = 3; m4 = 6;…
-
After calling python and importing mlab from mayavi, results in error, making mayavi unusable.
```
python
Python 3.8.6 (default, Sep 30 2020, 04:00:38)
[GCC 10.2.0] on linux
Type "help", "copy…
-
The current implementation of masking in mlab changes the data the user has supplied and this can be surprising. This should be fixed to copy the data and then mask it. If the user really wants to s…
-
It looks like your backend isn't fully connecting to your mongodb when deployed on heroku. You could try this:
```
if (process.env.NODE_ENV === "production") {
mongoose.connect(process.env.MLAB_U…
-
Instead of sorting + alpha blending, investigate whether Hashed Alpha Testing would produce "acceptable" results. Or one of order independent transparency approaches like MLAB. If any of these is dece…