Skip to content

Commit

Permalink
add extrude_and_trim_with()
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomusy committed Mar 21, 2024
1 parent 258019f commit 383848d
Show file tree
Hide file tree
Showing 9 changed files with 245 additions and 85 deletions.
2 changes: 2 additions & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
- add `rotation=..` to `Arrow2D()` class
- improvements to `applications.MorphPlotter`
- add `FlyOverSurface` class and `examples/basic/interaction_modes3.py`
- address #1072 for pyinstaller
- add `mesh.extrude_and_trim_with()` method out of #1077


## Soft-breaking Changes
Expand Down
1 change: 1 addition & 0 deletions examples/basic/interaction_modes3.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- "t" and "g" will move the camera up and down along z.
- "x" and "X" will reset the camera to the default position towards +/-x.
- "y" and "Y" will reset the camera to the default position towards +/-y.
- "." and "," will rotate azimuth to the right or left.
- "r" will reset the camera to the default position."""
from vedo import *
from vedo.interactor_modes import FlyOverSurface
Expand Down
4 changes: 2 additions & 2 deletions examples/notebooks/align1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": 5,
"execution_count": null,
"metadata": {
"scrolled": false
},
Expand Down Expand Up @@ -113,7 +113,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.10"
"version": "3.12.2"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion tests/pipeline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ cd ~/Projects/4d-gene-reconstruction/useful_scripts
python interp_to_tetras.py


# DOCUMETATION ###############################################################
# DOCUMENTATION ###############################################################
mount_staging
pip install pdoc
cd $VEDODIR/docs/pdoc
Expand Down
4 changes: 4 additions & 0 deletions vedo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ def format(self, record):
logger = logging.getLogger("vedo")

_chsh = logging.StreamHandler()
if sys.stdout is None:
sys.stdout = open(os.devnull, "w")
if sys.stderr is None:
sys.stderr = open(os.devnull, "w")
_chsh.flush = sys.stdout.flush
_chsh.setLevel(logging.DEBUG)
_chsh.setFormatter(_LoggingCustomFormatter())
Expand Down
Loading

0 comments on commit 383848d

Please sign in to comment.