Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
dot3d.h
1/* Automatically generated code, do not edit */
2/* Generated from source file: dot3d.pck */
3
4inline int dot_3d_filter( const double* p0, const double* p1, const double* p2) {
5 double a11;
6 a11 = (p1[0] - p0[0]);
7 double a12;
8 a12 = (p1[1] - p0[1]);
9 double a13;
10 a13 = (p1[2] - p0[2]);
11 double a21;
12 a21 = (p2[0] - p0[0]);
13 double a22;
14 a22 = (p2[1] - p0[1]);
15 double a23;
16 a23 = (p2[2] - p0[2]);
17 double Delta;
18 Delta = (((a11 * a21) + (a12 * a22)) + (a13 * a23));
19 int int_tmp_result;
20 double eps;
21 double max1 = fabs(a11);
22 if( (max1 < fabs(a12)) )
23 {
24 max1 = fabs(a12);
25 }
26 if( (max1 < fabs(a13)) )
27 {
28 max1 = fabs(a13);
29 }
30 double max2 = fabs(a21);
31 if( (max2 < fabs(a22)) )
32 {
33 max2 = fabs(a22);
34 }
35 if( (max2 < fabs(a23)) )
36 {
37 max2 = fabs(a23);
38 }
39 double lower_bound_1;
40 double upper_bound_1;
41 lower_bound_1 = max1;
42 upper_bound_1 = max1;
43 if( (max2 < lower_bound_1) )
44 {
45 lower_bound_1 = max2;
46 }
47 else
48 {
49 if( (max2 > upper_bound_1) )
50 {
51 upper_bound_1 = max2;
52 }
53 }
54 if( (lower_bound_1 < 3.78232824369468524638e-147) )
55 {
56 return FPG_UNCERTAIN_VALUE;
57 }
58 else
59 {
60 if( (upper_bound_1 > 1.67597599124282407923e+153) )
61 {
62 return FPG_UNCERTAIN_VALUE;
63 }
64 eps = (1.55534235888797977480e-15 * (max1 * max2));
65 if( (Delta > eps) )
66 {
67 int_tmp_result = 1;
68 }
69 else
70 {
71 if( (Delta < -eps) )
72 {
73 int_tmp_result = -1;
74 }
75 else
76 {
77 return FPG_UNCERTAIN_VALUE;
78 }
79 }
80 }
81 return int_tmp_result;
82}