Searched defs:ax (Results 1 - 10 of 10) sorted by relevance

/inkscape/src/2geom/
H A Dpolynomial.h188 static Poly linear(double ax, double b) { argument
191 p.push_back(ax);
222 * The equation is given in the standard form: ax^2 + bx + c = 0.
227 * The equation is given in the standard form: ax^3 + bx^2 + cx + d = 0.
H A Dsbasis-2d.cpp128 double ax = -reste[0]/fact_k*nA[X]; local
133 result[X][k] = Linear(ax,bx);
/inkscape/src/display/
H A Dnr-filter-image.cpp201 double ax, ay; // Align side local
204 ax = 0.0;
208 ax = 0.5;
212 ax = 1.0;
216 ax = 0.0;
220 ax = 0.5;
224 ax = 1.0;
228 ax = 0.0;
232 ax = 0.5;
236 ax
[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
37 double dx=bx-ax;
42 tx=px-ax;
47 if(fabs(px-ax)<0.01) {
51 tx=(px-ax)/dx;
80 double ax=route->xs[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,bx,by,t)) {
H A Dstraightener.h69 double ax=route->xs[i-1], bx=route->xs[i], ay=route->ys[i-1], by=route->ys[i]; local
73 xs.push_back(ax+(bx-ax)*r);
80 double ax=route->xs[i-1], bx=route->xs[i], ay=route->ys[i-1], by=route->ys[i]; local
81 double r=(x-ax)/(bx-ax);
82 // as long as y is between ax and bx then r>0
/inkscape/src/livarot/
H A DPathConversion.cpp681 Geom::Point const ax = iE - 2 * iM + iS; member in class:Geom
685 oPt = t * t * ax + t * bx + cx;
691 Geom::Point const ax = ieD - 2 * iE + 2 * iS + isD; member in class:Geom
695 oPt = 3 * t * t * ax + 2 * t * bx + cx;
H A DShape.cpp1564 Shape::CmpToVert (Geom::Point ax, Geom::Point bx,bool as,bool bs) argument
1570 if (ax[0] > 0)
1572 if (ax[0] < 0)
1574 if (ax[1] > 0)
1576 if (ax[1] < 0)
1684 av = ax;
/inkscape/src/ui/widget/
H A Dcolor-slider.cpp333 gint ax, ay; local
337 ax = (int)(cx + value * cw - ARROW_SIZE / 2 - 2);
339 queue_draw_area(ax, ay, ARROW_SIZE + 4, ch);
340 ax = (int)(cx + _value * cw - ARROW_SIZE / 2 - 2);
342 queue_draw_area(ax, ay, ARROW_SIZE + 4, ch);
/inkscape/src/
H A Dsp-namedview.cpp758 gint ax = MIN(gdk_screen_width() - minOnscreen, x); local
762 ax = MAX(minOnscreen - w, ax);
765 return Geom::Point(ax, ay);
/inkscape/src/ui/tools/
H A Dmeasure-tool.cpp300 double ax = p1[Geom::X] - xc; 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 6216 milliseconds