Auto-adjusts the colormap for Avizo/Amira Ortho Slice modules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. Copy/paste this into Avizo/Amira console | |
# 2. Select one or more Ortho Slices to auto-adjust and press F3 | |
# Note: Can change 'onKeyFX' to the desired keybinding | |
proc onKeyF3 {} { | |
foreach slice [all -selected HxOrthoSlice] { | |
$slice colormap adjustRange; $slice fire | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment