#
# NEED_PARMS zoomfactor
#
# HELP: SYNOPSIS:
# HELP:     threeplane/sizeviews
# HELP:
# HELP: DESCRIPTION:
# HELP:     Set the size for all three planes.
#
DECLARE double $zoomfactor
CECHO ${$zoomfactor=$argv[1]}

VIEW_SET Planes_XY
VIEW_SIZEX ${$root.vol[current].size.x*$zoomfactor}
VIEW_SIZEY ${$root.vol[current].size.y*$zoomfactor}

VIEW_SET Planes_XZ
VIEW_SIZEX ${$root.vol[current].size.x*$zoomfactor}
VIEW_SIZEY ${$root.vol[current].size.z*$zoomfactor}

VIEW_SET Planes_YZ
VIEW_SIZEX ${$root.vol[current].size.y*$zoomfactor}
VIEW_SIZEY ${$root.vol[current].size.z*$zoomfactor}
