Problem:
I want to perform a clip plane.
Solution:
Use a set of macro commands to clip above/below the defined slice.
The macro command related to the clipping of planes is: $!SliceAttributes 1 ClipPlane.
It can take the following arguments: AbovePrimarySlice, BelowPrimarySlice, and None.
Consider adding these macros to your Quick Macro Panel for faster access:
$!MacroFunction NAME = "Clip above primary slice"
ShowInMacroPanel = TRUE
$!SliceAttributes 1 ClipPlane = AbovePrimarySlice
$!EndMacroFunction
$!MacroFunction NAME = "Clip below primary slice"
ShowInMacroPanel = TRUE
$!SliceAttributes 1 ClipPlane = BelowPrimarySlice
$!EndMacroFunction
$!MacroFunction NAME = "Clip disable"
ShowInMacroPanel = TRUE
$!SliceAttributes 1 ClipPlane = None
$!EndMacroFunction




