4inline int orient_3d_filter(
const double* p0,
const double* p1,
const double* p2,
const double* p3) {
10 a13 = (p1[2] - p0[2]);
12 a21 = (p2[0] - p0[0]);
14 a22 = (p2[1] - p0[1]);
16 a23 = (p2[2] - p0[2]);
18 a31 = (p3[0] - p0[0]);
20 a32 = (p3[1] - p0[1]);
22 a33 = (p3[2] - p0[2]);
24 Delta = (((a11 * ((a22 * a33) - (a23 * a32))) - (a21 * ((a12 * a33) - (a13 * a32)))) + (a31 * ((a12 * a23) - (a13 * a22))));
27 double max1 = fabs(a11);
28 if((max1 < fabs(a21)))
32 if((max1 < fabs(a31)))
36 double max2 = fabs(a12);
37 if((max2 < fabs(a13)))
41 if((max2 < fabs(a22)))
45 if((max2 < fabs(a23)))
49 double max3 = fabs(a22);
50 if((max3 < fabs(a23)))
54 if((max3 < fabs(a32)))
58 if((max3 < fabs(a33)))
66 if((max2 < lower_bound_1))
72 if((max2 > upper_bound_1))
77 if((max3 < lower_bound_1))
83 if((max3 > upper_bound_1))
88 if((lower_bound_1 < 1.63288018496748314939e-98))
90 return FPG_UNCERTAIN_VALUE;
94 if((upper_bound_1 > 5.59936185544450928309e+101))
96 return FPG_UNCERTAIN_VALUE;
98 eps = (5.11071278299732992696e-15 * ((max2 * max3) * max1));
111 return FPG_UNCERTAIN_VALUE;
115 return int_tmp_result;