Hi people!
I wrote some code in C (not in C++):
Mask1 = abs(Area1 * 2 + Area2 * -2);
Area1, Area2 and Mask1 are three double variables. (e.g. 3.00556, 34.3333) My problem is that abs returns an integer value (e.g 30).
What I need to do to fix it?
Regards.