4inline int orient_2d_filter(
const double* p0,
const double* p1,
const double* p2) {
10 a21 = (p2[0] - p0[0]);
12 a22 = (p2[1] - p0[1]);
14 Delta = ((a11 * a22) - (a12 * a21));
17 double max1 = fabs(a11);
18 if( (max1 < fabs(a12)) )
22 double max2 = fabs(a21);
23 if( (max2 < fabs(a22)) )
31 if( (max2 < lower_bound_1) )
37 if( (max2 > upper_bound_1) )
42 if( (lower_bound_1 < 5.00368081960964635413e-147) )
44 return FPG_UNCERTAIN_VALUE;
48 if( (upper_bound_1 > 1.67597599124282407923e+153) )
50 return FPG_UNCERTAIN_VALUE;
52 eps = (8.88720573725927976811e-16 * (max1 * max2));
65 return FPG_UNCERTAIN_VALUE;
69 return int_tmp_result;