Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
aligned3d.h
1/* Automatically generated code, do not edit */
2/* Generated from source file: aligned3d.pck */
3
4inline int aligned_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 delta1;
18 delta1 = ((a12 * a23) - (a22 * a13));
19 double delta2;
20 delta2 = ((a13 * a21) - (a23 * a11));
21 double delta3;
22 delta3 = ((a11 * a22) - (a21 * a12));
23 int int_tmp_result;
24 double eps;
25 int int_tmp_result_FFWKCAA;
26 int int_tmp_result_k60Ocge;
27 double max1 = fabs(a12);
28 if( (max1 < fabs(a22)) )
29 {
30 max1 = fabs(a22);
31 }
32 double max2 = fabs(a13);
33 if( (max2 < fabs(a23)) )
34 {
35 max2 = fabs(a23);
36 }
37 double lower_bound_1;
38 double upper_bound_1;
39 lower_bound_1 = max1;
40 upper_bound_1 = max1;
41 if( (max2 < lower_bound_1) )
42 {
43 lower_bound_1 = max2;
44 }
45 else
46 {
47 if( (max2 > upper_bound_1) )
48 {
49 upper_bound_1 = max2;
50 }
51 }
52 if( (lower_bound_1 < 5.00368081960964635413e-147) )
53 {
54 return FPG_UNCERTAIN_VALUE;
55 }
56 else
57 {
58 if( (upper_bound_1 > 1.67597599124282407923e+153) )
59 {
60 return FPG_UNCERTAIN_VALUE;
61 }
62 eps = (8.88720573725927976811e-16 * (max1 * max2));
63 if( (delta1 > eps) )
64 {
65 int_tmp_result = 1;
66 }
67 else
68 {
69 if( (delta1 < -eps) )
70 {
71 int_tmp_result = -1;
72 }
73 else
74 {
75 return FPG_UNCERTAIN_VALUE;
76 }
77 }
78 }
79 double max3 = fabs(a11);
80 if( (max3 < fabs(a21)) )
81 {
82 max3 = fabs(a21);
83 }
84 lower_bound_1 = max3;
85 upper_bound_1 = max3;
86 if( (max2 < lower_bound_1) )
87 {
88 lower_bound_1 = max2;
89 }
90 else
91 {
92 if( (max2 > upper_bound_1) )
93 {
94 upper_bound_1 = max2;
95 }
96 }
97 if( (lower_bound_1 < 5.00368081960964635413e-147) )
98 {
99 return FPG_UNCERTAIN_VALUE;
100 }
101 else
102 {
103 if( (upper_bound_1 > 1.67597599124282407923e+153) )
104 {
105 return FPG_UNCERTAIN_VALUE;
106 }
107 eps = (8.88720573725927976811e-16 * (max2 * max3));
108 if( (delta2 > eps) )
109 {
110 int_tmp_result_FFWKCAA = 1;
111 }
112 else
113 {
114 if( (delta2 < -eps) )
115 {
116 int_tmp_result_FFWKCAA = -1;
117 }
118 else
119 {
120 return FPG_UNCERTAIN_VALUE;
121 }
122 }
123 }
124 lower_bound_1 = max1;
125 upper_bound_1 = max1;
126 if( (max3 < lower_bound_1) )
127 {
128 lower_bound_1 = max3;
129 }
130 else
131 {
132 if( (max3 > upper_bound_1) )
133 {
134 upper_bound_1 = max3;
135 }
136 }
137 if( (lower_bound_1 < 5.00368081960964635413e-147) )
138 {
139 return FPG_UNCERTAIN_VALUE;
140 }
141 else
142 {
143 if( (upper_bound_1 > 1.67597599124282407923e+153) )
144 {
145 return FPG_UNCERTAIN_VALUE;
146 }
147 eps = (8.88720573725927976811e-16 * (max3 * max1));
148 if( (delta3 > eps) )
149 {
150 int_tmp_result_k60Ocge = 1;
151 }
152 else
153 {
154 if( (delta3 < -eps) )
155 {
156 int_tmp_result_k60Ocge = -1;
157 }
158 else
159 {
160 return FPG_UNCERTAIN_VALUE;
161 }
162 }
163 }
164 return ((((int_tmp_result == 0) && (int_tmp_result_FFWKCAA == 0)) && (int_tmp_result_k60Ocge == 0)) ? 0 : 1);
165}