Lines Matching refs:ndots
66 int ndots; in dotted_circle() local
70 ndots = 2; in dotted_circle()
73 ndots = 4*int(M_PI/(2.0*gap_angle)); in dotted_circle()
74 gap_angle = (M_PI*2.0)/ndots; in dotted_circle()
77 for (int i = 0; i < ndots; i++, ang += gap_angle) in dotted_circle()
198 int ndots = 4 * int(le / lt.dash_width / 4 + 0.5); in dotted_ellipse() local
199 if (ndots < 4) in dotted_ellipse()
200 ndots = 4; in dotted_ellipse()
205 for (int i = 1; i <= ndots; i++) { in dotted_ellipse()
208 double ld = i * le / ndots; in dotted_ellipse()
297 int ndots = int(total_angle/(lt.dash_width/rad) + .5); in dotted_arc() local
298 if (ndots == 0) in dotted_arc()
301 for (int i = 0; i <= ndots; i++) { in dotted_arc()
302 double a = start_angle + (total_angle*i)/ndots; in dotted_arc()