Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
side4h.h
1/* Automatically generated code, do not edit */
2/* Generated from source file: side4h.pck */
3
4inline int side4h_3d_filter( const double* p0, const double* p1, const double* p2, const double* p3, const double* p4, double h0, double h1, double h2, double h3, double h4) {
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 a14;
12 a14 = (h0 - h1);
13 double a21;
14 a21 = (p2[0] - p0[0]);
15 double a22;
16 a22 = (p2[1] - p0[1]);
17 double a23;
18 a23 = (p2[2] - p0[2]);
19 double a24;
20 a24 = (h0 - h2);
21 double a31;
22 a31 = (p3[0] - p0[0]);
23 double a32;
24 a32 = (p3[1] - p0[1]);
25 double a33;
26 a33 = (p3[2] - p0[2]);
27 double a34;
28 a34 = (h0 - h3);
29 double a41;
30 a41 = (p4[0] - p0[0]);
31 double a42;
32 a42 = (p4[1] - p0[1]);
33 double a43;
34 a43 = (p4[2] - p0[2]);
35 double a44;
36 a44 = (h0 - h4);
37 double Delta1;
38 Delta1 = (((a21 * ((a32 * a43) - (a33 * a42))) - (a31 * ((a22 * a43) - (a23 * a42)))) + (a41 * ((a22 * a33) - (a23 * a32))));
39 double Delta2;
40 Delta2 = (((a11 * ((a32 * a43) - (a33 * a42))) - (a31 * ((a12 * a43) - (a13 * a42)))) + (a41 * ((a12 * a33) - (a13 * a32))));
41 double Delta3;
42 Delta3 = (((a11 * ((a22 * a43) - (a23 * a42))) - (a21 * ((a12 * a43) - (a13 * a42)))) + (a41 * ((a12 * a23) - (a13 * a22))));
43 double Delta4;
44 Delta4 = (((a11 * ((a22 * a33) - (a23 * a32))) - (a21 * ((a12 * a33) - (a13 * a32)))) + (a31 * ((a12 * a23) - (a13 * a22))));
45 double r;
46 r = ((((Delta1 * a14) - (Delta2 * a24)) + (Delta3 * a34)) - (Delta4 * a44));
47 double eps;
48 double max1 = fabs(a11);
49 if( (max1 < fabs(a21)) )
50 {
51 max1 = fabs(a21);
52 }
53 if( (max1 < fabs(a31)) )
54 {
55 max1 = fabs(a31);
56 }
57 double max2 = fabs(a12);
58 if( (max2 < fabs(a13)) )
59 {
60 max2 = fabs(a13);
61 }
62 if( (max2 < fabs(a22)) )
63 {
64 max2 = fabs(a22);
65 }
66 if( (max2 < fabs(a23)) )
67 {
68 max2 = fabs(a23);
69 }
70 double max3 = fabs(a22);
71 if( (max3 < fabs(a23)) )
72 {
73 max3 = fabs(a23);
74 }
75 if( (max3 < fabs(a32)) )
76 {
77 max3 = fabs(a32);
78 }
79 if( (max3 < fabs(a33)) )
80 {
81 max3 = fabs(a33);
82 }
83 double lower_bound_1;
84 double upper_bound_1;
85 int Delta4_sign;
86 int int_tmp_result;
87 lower_bound_1 = max1;
88 upper_bound_1 = max1;
89 if( (max2 < lower_bound_1) )
90 {
91 lower_bound_1 = max2;
92 }
93 else
94 {
95 if( (max2 > upper_bound_1) )
96 {
97 upper_bound_1 = max2;
98 }
99 }
100 if( (max3 < lower_bound_1) )
101 {
102 lower_bound_1 = max3;
103 }
104 else
105 {
106 if( (max3 > upper_bound_1) )
107 {
108 upper_bound_1 = max3;
109 }
110 }
111 if( (lower_bound_1 < 1.63288018496748314939e-98) )
112 {
113 return FPG_UNCERTAIN_VALUE;
114 }
115 else
116 {
117 if( (upper_bound_1 > 7.23700557733225980357e+75) )
118 {
119 return FPG_UNCERTAIN_VALUE;
120 }
121 eps = (5.11071278299732992696e-15 * ((max2 * max3) * max1));
122 if( (Delta4 > eps) )
123 {
124 int_tmp_result = 1;
125 }
126 else
127 {
128 if( (Delta4 < -eps) )
129 {
130 int_tmp_result = -1;
131 }
132 else
133 {
134 return FPG_UNCERTAIN_VALUE;
135 }
136 }
137 }
138 Delta4_sign = int_tmp_result;
139 int int_tmp_result_FFWKCAA;
140 double max4 = max1;
141 if( (max4 < fabs(a41)) )
142 {
143 max4 = fabs(a41);
144 }
145 double max5 = max2;
146 if( (max5 < max3) )
147 {
148 max5 = max3;
149 }
150 double max6 = fabs(a14);
151 if( (max6 < fabs(a24)) )
152 {
153 max6 = fabs(a24);
154 }
155 if( (max6 < fabs(a34)) )
156 {
157 max6 = fabs(a34);
158 }
159 if( (max6 < fabs(a44)) )
160 {
161 max6 = fabs(a44);
162 }
163 double max7 = max3;
164 if( (max7 < fabs(a42)) )
165 {
166 max7 = fabs(a42);
167 }
168 if( (max7 < fabs(a43)) )
169 {
170 max7 = fabs(a43);
171 }
172 lower_bound_1 = max4;
173 upper_bound_1 = max4;
174 if( (max5 < lower_bound_1) )
175 {
176 lower_bound_1 = max5;
177 }
178 else
179 {
180 if( (max5 > upper_bound_1) )
181 {
182 upper_bound_1 = max5;
183 }
184 }
185 if( (max6 < lower_bound_1) )
186 {
187 lower_bound_1 = max6;
188 }
189 else
190 {
191 if( (max6 > upper_bound_1) )
192 {
193 upper_bound_1 = max6;
194 }
195 }
196 if( (max7 < lower_bound_1) )
197 {
198 lower_bound_1 = max7;
199 }
200 else
201 {
202 if( (max7 > upper_bound_1) )
203 {
204 upper_bound_1 = max7;
205 }
206 }
207 if( (lower_bound_1 < 2.89273249588395194294e-74) )
208 {
209 return FPG_UNCERTAIN_VALUE;
210 }
211 else
212 {
213 if( (upper_bound_1 > 7.23700557733225980357e+75) )
214 {
215 return FPG_UNCERTAIN_VALUE;
216 }
217 eps = (3.17768858673611390687e-14 * (((max5 * max7) * max4) * max6));
218 if( (r > eps) )
219 {
220 int_tmp_result_FFWKCAA = 1;
221 }
222 else
223 {
224 if( (r < -eps) )
225 {
226 int_tmp_result_FFWKCAA = -1;
227 }
228 else
229 {
230 return FPG_UNCERTAIN_VALUE;
231 }
232 }
233 }
234 return (Delta4_sign * int_tmp_result_FFWKCAA);
235}