This function is used to set the angle within which a touch must be moving away from another touch before a Pinch Out Gesture may potentially be started. The angle is measured in degrees and has a default value of 45°.
gesture_pinch_angle_away();
Real (inches)
if (gesture_get_pinch_angle_away() != 45)
{
gesture_pinch_angle_away(45);
}
The above code checks to see if the pinch out angle for gestures is set to 45° and if it is not it sets it to that value