Skip to content

Commit

Permalink
v5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomusy committed Feb 15, 2024
1 parent 3bd8893 commit f988ce1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
7 changes: 3 additions & 4 deletions docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,21 +131,20 @@ tests/snippets/test_compare_fit1.py
### Broken Examples
Examples that are not fully functional and need some fixing:
```
earth_model.py (wrong colormapping?)
markpoint.py (misplaced leader indicator)
cut_and_cap.py (incomplete capping)
gyroscope1.py (broken physics)
mousehover1.py (long indicator)
tests/issues/discussion_800.py (incomplete capping of tube)
examples/volumetric/earth_model.py (overburden wron color)
```

#### Broken Projects
umap_viewer3d
trackviewer (some problems with removing a track, and z spacing)
./clone_viewer3d.py and ~/Projects/umap_viewer3d
./clone_viewer3d.py and
~/Projects/umap_viewer3d
[vedo.plotter] INFO: object 'FlagPole' was manually moved. Updated to its current position.
[vedo.plotter] INFO: object 'Text3D' was manually moved. Updated to its current position.
napari-vedo-bridge interactor frozen

rio_organoid
too slow??
Expand Down
6 changes: 0 additions & 6 deletions tests/pipeline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,6 @@ cd ~/Projects/napari-vedo-bridge
python $VEDODIR/examples/other/napari1.py # then open plugins ...
conda deactivate
################
cd ~/Projects/server/welleng
git pull
pip install -e .
cd examples
python
################
cd ~/Projects/server/brainrender/examples
python cell_density.py
python streamlines.py
Expand Down
10 changes: 6 additions & 4 deletions vedo/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1316,10 +1316,10 @@ def check_actors_trasform(self, at=None):
if M and not M.IsIdentity():
try:
a.retrieve_object().apply_transform_from_actor()
vedo.logger.info(
f"object '{a.retrieve_object().name}' "
"was manually moved. Updated to its current position."
)
# vedo.logger.info(
# f"object '{a.retrieve_object().name}' "
# "was manually moved. Updated to its current position."
# )
except AttributeError:
pass
return self
Expand Down Expand Up @@ -3403,6 +3403,8 @@ def show(
# Set the interaction style
if mode is not None:
self.user_mode(mode)
if self.qt_widget and mode is None:
self.user_mode(0)

if screenshot:
self.screenshot(screenshot)
Expand Down
2 changes: 1 addition & 1 deletion vedo/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
_version = '2024.5.0+dev37'
_version = '2024.5.1'

0 comments on commit f988ce1

Please sign in to comment.