This function change the scaling factor for all the selected frames.
Syntax
void Fct_Change_Scale(
SliceO_Window *window,
float value,
float factor
) ;
Parameters
window
Pointer to the currently selected window.
value
If not zero, this value will be the next scaling factor.
factor
If not zero, this factor will be multiplied to the current scaling factor to obtain the next scaling factor.
Return value
This function does not return a value.
Remarks
The new scaling factor is compute with:
if ( value )
scale = value ;
if ( factor )
scale *= factor ;
Requirements
Header:
sliceO_include.hpp
Library:
sliceO_Structures.lib
Example
from frame_ctrl.cpp
See also