4inline int dot_3d_filter(
const double* p0,
const double* p1,
const double* p2) {
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 Delta = (((a11 * a21) + (a12 * a22)) + (a13 * a23));
21 double max1 = fabs(a11);
22 if( (max1 < fabs(a12)) )
26 if( (max1 < fabs(a13)) )
30 double max2 = fabs(a21);
31 if( (max2 < fabs(a22)) )
35 if( (max2 < fabs(a23)) )
43 if( (max2 < lower_bound_1) )
49 if( (max2 > upper_bound_1) )
54 if( (lower_bound_1 < 3.78232824369468524638e-147) )
56 return FPG_UNCERTAIN_VALUE;
60 if( (upper_bound_1 > 1.67597599124282407923e+153) )
62 return FPG_UNCERTAIN_VALUE;
64 eps = (1.55534235888797977480e-15 * (max1 * max2));
77 return FPG_UNCERTAIN_VALUE;
81 return int_tmp_result;