Lines Matching defs:faraway
66 float faraway = 10000000; // used in "exclude" clips, hopefully well outside any real drawing!
1044 /* snaps coordinate pairs made up of values near +/-faraway, +/-faraway to exactly faraway.
1046 It should not affect internals of normal drawings because the value of faraway is so large.
1051 if((abs(abs(*x) - faraway)/faraway <= 1e-4) && (abs(abs(*y) - faraway)/faraway <= 1e-4)){
1052 *x = (*x > 0 ? faraway : -faraway);
1053 *y = (*y > 0 ? faraway : -faraway);
2276 tmp_path << "M " << faraway << "," << faraway << " ";
2277 tmp_path << "L " << faraway << "," << -faraway << " ";
2278 tmp_path << "L " << -faraway << "," << -faraway << " ";
2279 tmp_path << "L " << -faraway << "," << faraway << " ";