//=====
void SetViewerWindowColorLevel::Process()
{
-
// THE MAIN PROCESSING METHOD BODY
// Here we simply set the input 'In' value to the output 'Out'
// And print out the output value
// (the one provided in the attribute 'name' of the tag 'input')
// * TYPE is the C++ type of the input/output
// (the one provided in the attribute 'type' of the tag 'input')
-
if ( (bbGetInputWindowColorLevel().size()==2 ) && (bbGetInputwxContourMainFrame()!=NULL ))
{
- double w=bbGetInputWindowColorLevel()[0];
- double c=bbGetInputWindowColorLevel()[1];
+ double w = bbGetInputWindowColorLevel()[0];
+ double c = bbGetInputWindowColorLevel()[1];
bbGetInputwxContourMainFrame()->onBrigthnessColorWindowLevel(w,c);
} // if WindowColorLevel size && wxContourMainFrame
}