Mayavi

Latest version: v4.8.2

Safety actively analyzes 724004 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 5

4.7.1

============

Thanks to the following who contributed to this release (in alphabetical
order): Poruri Sai Rahul, Prabhu Ramachandran

This is a bug-fix release. 3 pull-requests were merged.

Fixes
-----

21 Jul 2019 `807 <https://github.com/enthought/mayavi/pull/807>`_ (PR)
- Fix old pipeline errors in image actor.

16 Jul 2019 `804 <https://github.com/enthought/mayavi/pull/804>`_ (rahulporuri)
- Use the decorator for classmethod
Instead of explicitly calling it in the class definition

04 Jul 2019 `800 <https://github.com/enthought/mayavi/pull/800>`_ (PR)
- Misc bug fixes
Fixes 3 issues that affect the new release due to changes in traits, pyface etc.
- Fix issue with CTF editor not showing.
- Fix issue with lut editor not launching.
- Fix issue with cut/pasting tree nodes and drag drop onto shell.

4.7.0

============

Thanks to the following who contributed to this release (in alphabetical
order): Eric Larson, Poruri Sai Rahul, Prabhu Ramachandran, Stefan Sandfeld,
and Todd.

Thanks to Enthought for funding the work that led to the significantly
improved Jupyter notebook support.

19 pull requests were merged.

This release has one very powerful new feature -- jupyter notebook support
with complete interactivity.

Enhancements
------------

26 Nov 2018 `739 <https://github.com/enthought/mayavi/pull/739>`_ (PR)

- New Jupyter notebook 'ipy' backend which is now the default and
requires that VTK's offscreen support work correctly. This backend
requires ipywidgets and ipyevents. It allows complete interactivity and
behaves almost exactly like a normal UI backend but inside a notebook.
Note that this will still require an xserver or windowing toolkit unless
VTK is compiled to be able to work without those.

Many thanks to Enthought for supporting this.

09 Oct 2018 `723 <https://github.com/enthought/mayavi/pull/723>`_ (PR)
- Improve offscreen window creation.
Creating a renderwindow in some configurations can actually make UI
calls. So if EGL is available we try that. Also, when we are using
offscreen rendering we only need a GenericRenderWindowInteractor.
Also add a convenient set method so one can set a different interactor if needed.

08 Sep 2018 `712 <https://github.com/enthought/mayavi/pull/712>`_ (PR)
- ENH: Feature to disable automatic updates.
This can be very handy at times when the automatic updates can trigger
several changes that are not desirable. For example on certain VTK
calls, internal ModifiedEvents may be fired which will automatically
call the update_traits method which can be wired to other events
triggering problems. In these cases one can use the
`global_disable_update` function to temporarily disable updates.


Fixes
-----

30 Jun 2019 `795 <https://github.com/enthought/mayavi/pull/795>`_ (rahulporuri)
- Test against ETS packages from source using travis cron jobs.

23 Jun 2019 `793 <https://github.com/enthought/mayavi/pull/793>`_ (rahulporuri)
- Use xenial linux instead of trusty

19 Jun 2019 `792 <https://github.com/enthought/mayavi/pull/792>`_ (ssandfeld)
- add fix for str conversion from bad bytes array
This fixes issue `791 <https://github.com/enthought/mayavi/issues/791>`_.

26 Apr 2019 `771 <https://github.com/enthought/mayavi/pull/771>`_ (prabhuramachandran)
- Fix issue `770 <https://github.com/enthought/mayavi/issues/770>`_
The issue arises in a few of the mlab sources where when we reset to a
polydata with a smaller number of points.

26 Apr 2019 `754 <https://github.com/enthought/mayavi/pull/754>`_ (larsoner)
- FIX: Fix nose leftovers in tests.

26 Apr 2019 `747 <https://github.com/enthought/mayavi/pull/747>`_ (larsoner)
- FIX: Escape chars in code.

27 Nov 2018 `740 <https://github.com/enthought/mayavi/pull/740>`_ (toddrme2178)
- Also catch exceptions in generating documentation

15 Nov 2018 `736 <https://github.com/enthought/mayavi/pull/736>`_ (PR)
- Some UI fixes for ivtk.
This fixes `734 <https://github.com/enthought/mayavi/issues/734>`_.

16 Nov 2018 `735 <https://github.com/enthought/mayavi/pull/735>`_ (larsoner)
- FIX: Fix set_range causing lookup table errors.

26 Oct 2018 `731 <https://github.com/enthought/mayavi/pull/731>`_ (larsoner)
- FIX: Fix type check

15 Nov 2018 `729 <https://github.com/enthought/mayavi/pull/729>`_ (larsoner)
- FIX: Fix for VTKNoneArray

11 Oct 2018 `724 <https://github.com/enthought/mayavi/pull/724>`_ (PR)
- Try and fix `477 <https://github.com/enthought/mayavi/issues/477>`_.
If OSMesa is available and user requests an offscreen window, use an
OSOpenGLRenderWindow, this will not require X and can be safely used on
a remote server.

16 Nov 2018 `722 <https://github.com/enthought/mayavi/pull/722>`_ (rahulporuri)
- Fix bug related to SurfaceSource.scalars This bug manifests when the
SurfaceSource object in question does not have a scalars attribute and
many of them do not have this.

23 Sep 2018 `716 <https://github.com/enthought/mayavi/pull/716>`_ (PR)
- Fix `713 <https://github.com/enthought/mayavi/issues/713>`_ with pip
installs failing.

23 Sep 2018 `715 <https://github.com/enthought/mayavi/pull/715>`_ (prabhuramachandran)
- Fix detection of color transfer function.
The original code was written for very old VTK versions but ever since
5.x we have a get_node_value method that actually provides the values of
the nodes given an index. We now use this instead of the earlier hack.

4.6.2

============

Thanks to the following who contributed to this release (in alphabetical
order): solarjoe, François Boulogne, Prabhu Ramachandran (PR), and Ioannis
Tziakos.

11 pull requests were merged.

This is largely a bugfix release with a few useful enhancements. This will be
the last release to properly support VTK versions less than 7.0.

Enhancements
------------

03 Aug 2018 `695 <https://github.com/enthought/mayavi/pull/695>`_ (PR)
- Wrap user defined algorithm
- Ensure VTKPythonAlgorithmBase is wrapped
- `tvtk.to_tvtk` now wraps VTK subclasses by using a nearest base class.
This allows us to add VTK objects easily to the mayavi pipeline.

02 Aug 2018 `694 <https://github.com/enthought/mayavi/pull/694>`_ (PR)
- Allow adding a vtkAlgorithm to the Mayavi pipeline
- Allow `mlab.pipeline.add_dataset` to also accept raw VTK objects.
- Generalize the TVTK pipeline browser so it can be plugged into other
HasTraits objects easily.
- Add a `VTKObjectSource` to Mayavi:
- allows us to add any VTK algorithm to the mayavi pipeline and then
process that with the rest of Mayavi.
- It provides a convenient UI to configure the raw TVTK objects.
- these can be added to the pipeline with `mlab.pipeline.add_dataset`.
- does not yet support user-defined algorithms via subclasses of
VTKPythonAlgorithmBase.

25 Jul 2018 `687 <https://github.com/enthought/mayavi/pull/687>`_ (PR)
- Add smart volume mapper
- This is a much nicer volume mapper.
- Also fix an issue with the tvtk_doc and the recent change to use desc
instead of help for the trait metadata.

24 Jul 2018 `684 <https://github.com/enthought/mayavi/pull/684>`_ (PR)
- Use `desc` instead of `help` for traits. This is much more useful than
`help` as it shows up nicely as a tooltip for each trait on the UI.

Fixes
-----

01 Aug 2018 `693 <https://github.com/enthought/mayavi/pull/693>`_ (PR)
- Fix wrapping VTK's Get* methods
- Fix array handler tests for newer numpy versions. These versions have a
float16/float128 dtype which are not directly supported in VTK.
- BUG: wrap the `Get` methods correctly. Many of the new pipeline methods
were not wrapped correctly. For example the
`vtkAlgorithm.GetInputAlgorithm` has multiple signatures. TVTK was
wrapping any getter which had one of its signatures with no args as a
pure property and not exposing the method itself. This means that users
cannot call `obj.get_input_algorithm(0, 0)` which is broken. We now wrap
the no arg call as a property but also wrap the generic method as a
callable method.
- Fix the pipeline browser for the new pipeline.
- Add a few reasonable tests for the browser

30 Jul 2018 `691 <https://github.com/enthought/mayavi/pull/691>`_ (PR)
- Fix issue `689 <https://github.com/enthought/mayavi/issues/689>`_.
The error was because the example uses the old pipeline.

24 Jul 2018 `683 <https://github.com/enthought/mayavi/pull/683>`_ (PR)
- Fix compiler check on windows. The check does not work when msvc is not
installed and this should fix it. This allows us to install Mayavi on
windows without having a compiler setup!

24 Jul 2018 `680 <https://github.com/enthought/mayavi/pull/680>`_ (solarjoe)
- fix upper case extension pyface will throw a KeyError if a filename with
an upper case extension like "my_image.PNG" it entered in the textbox as
the extension is not in the `meth_map`.

4.6.1

============

Thanks to the following who contributed to this release (in alphabetical
order): Eric Larson, Hongzhuo Liang, and Prabhu Ramachandran (PR).

15 pull requests were merged.

Enhancements
------------

04 Jul 2018 `669 <https://github.com/enthought/mayavi/pull/669>`_ (PR)
- ENH: Expose `process_ui_events` in mlab.

30 Jun 2018 `666 <https://github.com/enthought/mayavi/pull/666>`_ (PR)
- Add attribute data to datasets. This makes it very easy to add new
scalar/vector/tensor attributes to either a VTKDataSource or to an
ArraySource using the `add_attribute`, `remove_attribute`, and
`rename_attribute` methods.

29 Jun 2018 `663 <https://github.com/enthought/mayavi/pull/663>`_ (PR)
- Support PySide2. Set `QT_API=pyside2` for this to work.

28 Jun 2018 `661 <https://github.com/enthought/mayavi/pull/661>`_ (PR)
- Make `tvtk.array_ext` optional on systems with no compiler. This makes
Mayavi easy to install via pip without a compiler to build the extension
module. For those who have a compiler, the extension is built.

Fixes
-----

04 Jul 2018 `672 <https://github.com/enthought/mayavi/pull/672>`_ (PR)
- Fix Python3 error in some examples and fix picking of multi-component
scalars.

03 Jul 2018 `667 <https://github.com/enthought/mayavi/pull/667>`_ (lianghongzhuo)
- Fix help icon so it actually works and loads the documentation in a browser.

29 Jun 2018 `665 <https://github.com/enthought/mayavi/pull/665>`_ (PR)
- Fix annoying warning when running Mayavi tests.

29 Jun 2018 `664 <https://github.com/enthought/mayavi/pull/664>`_ (larsoner)
- ENH: Use views in set_id_type_array_py making it more efficient.

28 Jun 2018 `662 <https://github.com/enthought/mayavi/pull/662>`_ (PR)
- Fix the broken help links and icon to launch TVTK class browser.

27 Jun 2018 `660 <https://github.com/enthought/mayavi/pull/660>`_ (larsoner)
- MRG: Fix window size for screenshot on HiDPI

05 Jun 2018 `651 <https://github.com/enthought/mayavi/pull/651>`_ (PR)
- Fix description/long description in setup.py.
- Cleanup setup.py so just pip install mayavi works correctly without
needing numpy first.

4.6.0

============

Thanks to the following who contributed to this release (in alphabetical order):

Bhavesh Thakkar, Christian Brodbeck, David Haberthür, Emmanuelle Gouillart,
Eric Larson, Federico Miorelli, James Booth, Krishna Wadhwani, Marijn van
Vliet, Min RK, Nelle Varoquaux, Prabhu Ramachandran, Stefano Borini, solarjoe.

48 pull requests were merged for this release.

Enhancements
------------

Thanks to the VTK wheels now available on PyPI, this release is the first
version of Mayavi that can be installed via ``pip install mayavi``.

23 May 2018 `641 <https://github.com/enthought/mayavi/pull/641>`_ (PR)
- Use new pyface toolkit

19 Jul 2017 `528 <https://github.com/enthought/mayavi/pull/528>`_ (PR)
- Qt5 support. This is critical for Python 3.x as this is the only toolkit
that *currently* works reliably with Python 3.x and ETS.

Fixes
-----

26 May 2018 `646 <https://github.com/enthought/mayavi/pull/646>`_ (PR)
- Update installation documentation.
- Fix warning message when updating mlab_source data without scalars/vectors.

22 May 2018 `642 <https://github.com/enthought/mayavi/pull/642>`_ (PR)
- Fix nbextension and missing bug with global.

20 May 2018 `630 <https://github.com/enthought/mayavi/pull/630>`_ (PR)
- Improve tests so Python 2.7, 3.x are tested and the tests run using VTK 8.x and 7.x.

06 Mar 2018 `616 <https://github.com/enthought/mayavi/pull/616>`_ (PR)
- Misc fixes for PyQt4 and Python 3.6.

16 Feb 2018 `609 <https://github.com/enthought/mayavi/pull/609>`_ (PR)
- Fix bug with mlab.screenshot and VTK 8.1.0.

16 Feb 2018 `608 <https://github.com/enthought/mayavi/pull/608>`_ (PR)
- Fix travis builds

15 Feb 2018 `607 <https://github.com/enthought/mayavi/pull/607>`_ (PR)
- Fix `605 <https://github.com/enthought/mayavi/issues/605>`_: Interactors now work correctly with Qt5.

07 Feb 2018 `599 <https://github.com/enthought/mayavi/pull/599>`_ (PR)
- Fix some wxPython issues so mayavi works with recent wxPython releases.

06 Feb 2018 `597 <https://github.com/enthought/mayavi/pull/597>`_ (PR)
- Fix 8.1 issues phase 2

05 Feb 2018 `596 <https://github.com/enthought/mayavi/pull/596>`_ (PR)
- Fix 8.1 issues

23 Jan 2018 `588 <https://github.com/enthought/mayavi/pull/588>`_ (larsoner)
- MRG: Avoid NumPy deprecation

23 Jan 2018 `584 <https://github.com/enthought/mayavi/pull/584>`_ (FedeMiorelli)
- Fix bug with "p" keypress

23 Jan 2018 `583 <https://github.com/enthought/mayavi/pull/583>`_ (FedeMiorelli)
- VTK 8.x compatibility fixes

14 Dec 2017 `578 <https://github.com/enthought/mayavi/pull/578>`_ (larsoner)
- FIX: Remove debug print

06 Dec 2017 `572 <https://github.com/enthought/mayavi/pull/572>`_ (PR)
- BUG: Undo a couple of accidental trait_set changes.

30 Nov 2017 `571 <https://github.com/enthought/mayavi/pull/571>`_ (NelleV)
- DOC improve the mlab introduction

14 Dec 2017 `566 <https://github.com/enthought/mayavi/pull/566>`_ (ghost)
- Bug fix: solve the unicode encode error in windows

23 Nov 2017 `564 <https://github.com/enthought/mayavi/pull/564>`_ (wmvanvliet)
- Prevent get_tvtk_class_names from hijacking stderr

15 Nov 2017 `559 <https://github.com/enthought/mayavi/pull/559>`_ (wmvanvliet)
- Prevent get_tvtk_class_names from hijacking stdout

05 Dec 2017 `556 <https://github.com/enthought/mayavi/pull/556>`_ (larsoner)
- FIX: Tiny spelling fix

05 Dec 2017 `555 <https://github.com/enthought/mayavi/pull/555>`_ (larsoner)
- FIX: Fix deprecated .set / .get use

11 Aug 2017 `544 <https://github.com/enthought/mayavi/pull/544>`_ (FedeMiorelli)
- Fix numpy issues in lut_manager

11 Aug 2017 `543 <https://github.com/enthought/mayavi/pull/543>`_ (PR)
- Fix long standing test failure with ply reader.

06 Aug 2017 `541 <https://github.com/enthought/mayavi/pull/541>`_ (PR)
- Fix numpy warnings.

05 Aug 2017 `540 <https://github.com/enthought/mayavi/pull/540>`_ (PR)
- Try fix appveyor test failures.

05 Aug 2017 `539 <https://github.com/enthought/mayavi/pull/539>`_ (PR)
- Add test for the fix provided in `514 <https://github.com/enthought/mayavi/issues/514>`_.

05 Aug 2017 `538 <https://github.com/enthought/mayavi/pull/538>`_ (PR)
- Fix bug with reset method of mlab sources.

05 Aug 2017 `537 <https://github.com/enthought/mayavi/pull/537>`_ (PR)
- Fix tests

05 Aug 2017 `536 <https://github.com/enthought/mayavi/pull/536>`_ (PR)
- Update readme and add link to mailing lists.

08 Aug 2017 `531 <https://github.com/enthought/mayavi/pull/531>`_ (krishnaw14)
- Update installation instructions for conda/conda-forge/edm.

11 Jul 2017 `523 <https://github.com/enthought/mayavi/pull/523>`_ (solarjoe)
- doc: Typo fix

11 Jul 2017 `515 <https://github.com/enthought/mayavi/pull/515>`_ (PR)
- Fix a bug with array source and vectors.

05 Aug 2017 `514 <https://github.com/enthought/mayavi/pull/514>`_ (christianbrodbeck)
- FIX shared data in testing backend

09 Jun 2017 `510 <https://github.com/enthought/mayavi/pull/510>`_ (bhavesh2109)
- Update extract_grid.py

11 May 2017 `508 <https://github.com/enthought/mayavi/pull/508>`_ (FedeMiorelli)
- Fix pick_world bug with VTK >= 6

19 Jul 2017 `507 <https://github.com/enthought/mayavi/pull/507>`_ (FedeMiorelli)
- Fix bug in mouse_pick_dispatcher

09 May 2017 `506 <https://github.com/enthought/mayavi/pull/506>`_ (FedeMiorelli)
- Remove focus-stealing code

09 May 2017 `498 <https://github.com/enthought/mayavi/pull/498>`_ (minrk)
- avoid loading nbextension via absolute URL

09 May 2017 `486 <https://github.com/enthought/mayavi/pull/486>`_ (jabooth)
- Remove known bug about Python 3 support

19 Jul 2017 `471 <https://github.com/enthought/mayavi/pull/471>`_ (habi)
- Adding information/tip about figure width

05 Oct 2016 `444 <https://github.com/enthought/mayavi/pull/444>`_ (stefanoborini)
- Fix for setuptools 28.0

05 Oct 2016 `435 <https://github.com/enthought/mayavi/pull/435>`_ (emmanuelle)
- [MRG] Added a volume_slice helper function in mlab.

13 Aug 2016 `426 <https://github.com/enthought/mayavi/pull/426>`_ (PR)
- Update readme.

13 Aug 2016 `425 <https://github.com/enthought/mayavi/pull/425>`_ (PR)
- Fix lurking old pipeline code

4.5.0

============

Enhancements
------------

21 Jul 2016 `415 <https://github.com/enthought/mayavi/pull/415>`_ (PR)
- Jupyter notebook support! Adds support for displaying Mayavi images or
x3d scenes on the notebook. The x3d scenes allow one to fully interact
with the scene in the notebook. More documentation is available at
:ref:`jupyter_notebook`.

09 Jul 2016 `411 <https://github.com/enthought/mayavi/pull/411>`_ (PR)
- Adds support for recording movies and animating timesteps. See
:ref:`animating_a_timeseries` and :ref:`animating_a_visualization` for
more details.

07 Jul 2016 `410 <https://github.com/enthought/mayavi/pull/410>`_ (daytonb)
- Updated LUTs to include new matplotlib colorschemes, this includes the
new viridis colormap.

Fixes
-----

01 Aug 2016 `416 <https://github.com/enthought/mayavi/pull/416>`_ (PR)
- Fix several bugs, `397 <https://github.com/enthought/mayavi/issues/397>`_
where PDF files were not saved properly. Fix issues with ``tvtk.visual``
and add many tests for it, this fixes `387
<https://github.com/enthought/mayavi/issues/387>`_. Refactor the save
screenshot dialog popups. Fix problem with the picker point not showing
when "p" is pressed on the scene.

29 Jul 2016 `417 <https://github.com/enthought/mayavi/pull/417>`_ (patricksnape)
- Python 3 fixes for the jupyter notebook support.

08 Jul 2016 `413 <https://github.com/enthought/mayavi/pull/413>`_ (PR)
- Fixes `388 <https://github.com/enthought/mayavi/issues/388>`_ where
tubes were not showing on protein demo.

03 Jul 2016 `408 <https://github.com/enthought/mayavi/pull/408>`_ (ryanpepper)
- Add additional save options.

04 Jul 2016 `406 <https://github.com/enthought/mayavi/pull/406>`_ (PR)
- Fixes `403 <https://github.com/enthought/mayavi/issues/403>`_ where the
image plane widget and volume modules were broken.

06 Jul 2016 `405 <https://github.com/enthought/mayavi/pull/405>`_ (itziakos)
- Debug info on code gen for wrapper generation.

16 Jun 2016 `394 <https://github.com/enthought/mayavi/pull/394>`_ (PR)
- BUG: Fix slice unstructured grid module.

17 Jun 2016 `391 <https://github.com/enthought/mayavi/pull/391>`_ (SiggyF)
- Fix typo in readme.

13 May 2016 `386 <https://github.com/enthought/mayavi/pull/386>`_ (itziakos)
- update codecov configuration

04 May 2016 `376 <https://github.com/enthought/mayavi/pull/376>`_ (stefanoborini)
- Documentation for QString API failure.

04 May 2016 `375 <https://github.com/enthought/mayavi/pull/375>`_ (stefanoborini)
- Fixes incorrect signature of ``EnvisageEngine.new_scene``.

03 May 2016 `374 <https://github.com/enthought/mayavi/pull/374>`_ (stefanoborini)
- Fix for unexpected test code.

13 May 2016 `370 <https://github.com/enthought/mayavi/pull/370>`_ (kitchoi)
- Fix "_p_void" values in TVTK with VTK 6.x

29 Apr 2016 `364 <https://github.com/enthought/mayavi/pull/364>`_ (stefanoborini)
- Fix failing test for custom import in some circumstances

27 Apr 2016 `358 <https://github.com/enthought/mayavi/pull/358>`_ (stefanoborini)
- Removes ``array_ext.so/pyd`` on clean

25 Apr 2016 `356 <https://github.com/enthought/mayavi/pull/356>`_ (stefanoborini)
- Check if test successful with the appropriate filename.

27 Apr 2016 `355 <https://github.com/enthought/mayavi/pull/355>`_ (stefanoborini)
- Unicode trait handling for those vtk methods returning unicode data

24 Apr 2016 `352 <https://github.com/enthought/mayavi/pull/352>`_ (kitchoi)
- ENH: Nice load pylab_luts.pkl

27 Apr 2016 `351 <https://github.com/enthought/mayavi/pull/351>`_ (stefanoborini)
- Document object identity behavior matching VTK

21 Apr 2016 `349 <https://github.com/enthought/mayavi/pull/349>`_ (kitchoi)
- Revert "Fix savefig size and black image"

27 Apr 2016 `348 <https://github.com/enthought/mayavi/pull/348>`_ (stefanoborini)
- Added setup.py documentation for Qt requirements

27 Apr 2016 `345 <https://github.com/enthought/mayavi/pull/345>`_ (kitchoi)
- Add VTK 6.3 and VTK 7 to travis ci

20 Apr 2016 `341 <https://github.com/enthought/mayavi/pull/341>`_ (kitchoi)
- Fix traitsdoc setup and compliance with py3

20 Apr 2016 `340 <https://github.com/enthought/mayavi/pull/340>`_ (kitchoi)
- Import and integer division in python3

20 Apr 2016 `335 <https://github.com/enthought/mayavi/pull/335>`_ (kitchoi)
- Fix texture on ``mlab.surf``, issue `211 <https://github.com/enthought/mayavi/issues/211>`_.

20 Apr 2016 `334 <https://github.com/enthought/mayavi/pull/334>`_ (stefanoborini)
- Fixes Quiver3d Failure with different argument types

20 Apr 2016 `332 <https://github.com/enthought/mayavi/pull/332>`_ (kitchoi)
- Fix Text3D in VTK 6.0+

21 Apr 2016 `331 <https://github.com/enthought/mayavi/pull/331>`_ (kitchoi)
- Fix savefig size and black image

20 Apr 2016 `330 <https://github.com/enthought/mayavi/pull/330>`_ (stefanoborini)
- Fix for exception when modifying extents

01 Apr 2016 `329 <https://github.com/enthought/mayavi/pull/329>`_ (stefanoborini)
- Suppresses test for VTK 6.2 (solves appVeyor random failure)

20 Apr 2016 `327 <https://github.com/enthought/mayavi/pull/327>`_ (stefanoborini)
- Forces pipeline update when LUT changes

01 Apr 2016 `326 <https://github.com/enthought/mayavi/pull/326>`_ (stefanoborini)
- Fix for test failure on mayavi -t

28 Mar 2016 `323 <https://github.com/enthought/mayavi/pull/323>`_ (stefanoborini)
- Enforce ordering of attribute labels in VTKDataSource.

28 Mar 2016 `315 <https://github.com/enthought/mayavi/pull/315>`_ (stefanoborini)
- Apply has_attribute to the output in VTKFileReader

17 Mar 2016 `313 <https://github.com/enthought/mayavi/pull/313>`_ (kitchoi)
- Replacing links to code. and svn.enthought.com

09 Mar 2016 `310 <https://github.com/enthought/mayavi/pull/310>`_ (kitchoi)
- Fix Camera off-centered when loading saved visualization

09 Mar 2016 `309 <https://github.com/enthought/mayavi/pull/309>`_ (PR)
- Update to use new VTK pipeline where possible. This fixes a number of
issues with the pipeline was not updating properly.

09 Mar 2016 `306 <https://github.com/enthought/mayavi/pull/306>`_ (kitchoi)
- Fix issue with ``mlab.move``

01 Apr 2016 `304 <https://github.com/enthought/mayavi/pull/304>`_ (kitchoi)
- Fix issue `302 <https://github.com/enthought/mayavi/issues/302>`_,
segfault when savefig is called multiple times.

09 Mar 2016 `303 <https://github.com/enthought/mayavi/pull/303>`_ (kitchoi)
- Fix get_engine behavior when backend is changed again.


Contributions from itziakos, stefanoborini and kitchoi are funded and supported
by the `SimPhoNy <http://www.simphony-project.eu/>`_ project, an EU-project
funded by the 7th Framework Programme (Project number 604005) under the
call NMP.2013.1.4-1.

Page 2 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.