Searched defs:ay (Results 1 - 7 of 7) sorted by relevance

/inkscape/src/display/
H A Dnr-filter-image.cpp201 double ax, ay; // Align side local
205 ay = 0.0;
209 ay = 0.0;
213 ay = 0.0;
217 ay = 0.5;
221 ay = 0.5;
225 ay = 0.5;
229 ay = 1.0;
233 ay = 1.0;
237 ay
[all...]
/inkscape/src/libcola/
H A Dstraightener.cpp36 static bool pointOnLine(double px,double py, double ax, double ay, double bx, double by, double& tx) { argument
38 double dy=by-ay;
43 ty=py-ay;
48 tx=(py-ay)/dy;
55 if(fabs(py-ay)<0.01) {
59 ty=(py-ay)/dy;
81 double ay=route->ys[i-1]; local
86 //printf(" px=%f, py=%f, ax=%f, ay=%f, bx=%f, by=%f\n",px,py,ax,ay,bx,by);
87 if(pointOnLine(px,py,ax,ay,b
[all...]
H A Dstraightener.h69 double ax=route->xs[i-1], bx=route->xs[i], ay=route->ys[i-1], by=route->ys[i]; local
70 double r=(y-ay)/(by-ay);
71 // as long as y is between ay and by then r>0
80 double ax=route->xs[i-1], bx=route->xs[i], ay=route->ys[i-1], by=route->ys[i]; local
84 ys.push_back(ay+(by-ay)*r);
/inkscape/src/2geom/
H A Dsbasis-2d.cpp129 double ay = -reste[0]/fact_k*nA[Y]; local
134 result[Y][k] = Linear(ay,by);
/inkscape/src/ui/widget/
H A Dcolor-slider.cpp333 gint ax, ay; local
338 ay = cy;
339 queue_draw_area(ax, ay, ARROW_SIZE + 4, ch);
341 ay = cy;
342 queue_draw_area(ax, ay, ARROW_SIZE + 4, ch);
/inkscape/src/
H A Dsp-namedview.cpp759 gint ay = MIN(gdk_screen_height() - minOnscreen, y); local
763 ay = MAX(minOnscreen - h, ay);
765 return Geom::Point(ax, ay);
/inkscape/src/ui/tools/
H A Dmeasure-tool.cpp301 double ay = p1[Geom::Y] - yc; local
304 double q1 = (ax * ax) + (ay * ay);
305 double q2 = q1 + (ax * bx) + (ay * by);
307 double k2 = (4.0 / 3.0) * (std::sqrt(2 * q1 * q2) - q2) / ((ax * by) - (ay * bx));
309 Geom::Point p2(xc + ax - (k2 * ay),
310 yc + ay + (k2 * ax));

Completed in 28 milliseconds