Lines Matching refs:s0xt0
144 double s0xt0 = sweep[0].crossCheck(tweep[0]);
145 double m = s0xt0 / s0dt0;
151 return s0xt0 < 0;
169 double s0xt0 = sweep[0].crossCheck(tweep[0]);
171 bool tBetweenS = s0xs1 > 0 ? s0xt0 > 0 && s1xt0 < 0 : s0xt0 < 0 && s1xt0 > 0;
179 if ((s0xt0 == 0 && s1xt1 == 0) || (s1xt0 == 0 && s0xt1 == 0)) { // s0 to s1 equals t0 to t1
182 bool sBetweenT = t0xt1 > 0 ? s0xt0 < 0 && s0xt1 > 0 : s0xt0 > 0 && s0xt1 < 0;
188 if (s0xt0 >= 0 && s0xt1 >= 0 && s1xt0 >= 0 && s1xt1 >= 0) {
191 if (s0xt0 <= 0 && s0xt1 <= 0 && s1xt0 <= 0 && s1xt1 <= 0) {
200 if (s0xt0 > 0 && m0xm1 > 0) {
203 if (s0xt0 < 0 && m0xm1 < 0) {
206 REPORTER_ASSERT(reporter, s0xt0 != 0);
832 double s0xt0 = sweep[0].crossCheck(tweep[0]);
833 REPORTER_ASSERT(reporter, s0xt0 != 0);
834 bool ccw = s0xt0 < 0;