2022.4.1
This version includes various fixes, but the most important thing is that it implements the snake_case
naming scheme (instead of camelCase
) for all class methods and functions, so e.g. code like this
(in vedo==2022.3.1):
mesh = Mesh("bunny.obj")
mesh.cutWithPlane()
now becomes (in vedo==2022.4.1):
mesh = Mesh("bunny.obj")
mesh.cut_with_plane() ##### <----
Check out the docs in case of doubts.
See discussion #705
@jkissi @zhang-qiang-github @XushanLu @Gjacquenot @FedeClaudi @ManuGraiph @infinity77 @lukablagoje @LogWell @Amin-Fakia @nantille
addons.py
- improved slider callback interface
mesh.py
- fixed issue #593
volume.py
- can warp scalars in a volumetric dataset with
warp()
New/Revised Examples
examples/pyplot/fill_gap.py
examples/basic/sliders_hsv.py
examples/volumetric/slicer2.py
examples/volumetric/warp_scalars.py
examples/other/qt_window3.py