Home
last modified time | relevance | path

Searched refs:pass_theta1 (Results 1 – 2 of 2) sorted by relevance

/dports/graphics/tgif/tgif-QPL-4.2.5/
H A Drect.c1144 int pass_theta1, just_pass_theta1, angle, dir, full_circle; local
1254 pass_theta1 = FALSE;
1256 while (angle < theta2 || !pass_theta1) {
1257 if (angle >= theta1 && !pass_theta1) {
1258 pass_theta1 = TRUE;
1391 } else if (pass_theta1) {
1539 pass_theta1 = FALSE;
1541 while (angle > theta2 || !pass_theta1) {
1542 if (angle <= theta1 && !pass_theta1) {
1543 pass_theta1 = TRUE;
[all …]
H A Darc.c393 int w=arc_ptr->w, h=arc_ptr->h, pass_theta1=FALSE, coverage=0, angle; local
429 while (angle < theta2 || !pass_theta1) {
430 if (angle >= theta1 && !pass_theta1) {
431 pass_theta1 = TRUE;
435 if (pass_theta1) coverage |= 1 << (((angle+360)/90) % 4);
440 while (angle > theta2 || !pass_theta1) {
441 if (angle <= theta1 && !pass_theta1) {
442 pass_theta1 = TRUE;
446 if (pass_theta1) coverage |= 1 << ((angle/90) % 4);