/inkscape/src/livarot/ |
H A D | ShapeDraw.cpp | 17 Shape::Plot (double ix, double iy, double ir, double mx, double my, bool doPoint, argument 55 double ph=(getPoint(i).x[0]-ix)*ir+mx; 62 double ph=(getPoint(i).x[0]-ix)*ir+mx; 74 double sh=(getPoint(stP).x[0]-ix)*ir+mx; 76 double eh=(getPoint(enP).x[0]-ix)*ir+mx; 92 double sh=(getPoint(stP).x[0]-ix)*ir+mx; 94 double eh=(getPoint(enP).x[0]-ix)*ir+mx;
|
/inkscape/src/2geom/ |
H A D | sweep-bounds.cpp | 9 unsigned ix; member in struct:Geom::Event 11 Event(double pos, unsigned i, bool c) : x(pos), ix(i), closing(c) {} 19 return other.x == x && other.ix == ix && other.closing == closing; 47 unsigned ix = events[i].ix; local 49 std::vector<unsigned>::iterator iter = std::find(open.begin(), open.end(), ix); 55 if(rs[jx][1-d].intersects(rs[ix][1-d])) { 56 pairs[jx].push_back(ix); 59 open.push_back(ix); [all...] |
H A D | circle.cpp | 175 Coord ix = (D*dy) / (dr*dr); local 177 Point ip(ix, iy); ip += _center;
|
H A D | crossing.h | 61 bool onIx(unsigned ix) const { return a == ix || b == ix; } 113 unsigned ix; member in struct:Geom::CrossingOrder 115 CrossingOrder(unsigned i, bool r = false) : ix(i), rev(r) {} 118 return (ix == a.a ? a.ta : a.tb) < 119 (ix == b.a ? b.ta : b.tb); 121 return (ix == a.a ? a.ta : a.tb) > 122 (ix == b.a ? b.ta : b.tb); 144 inline void sort_crossings(Crossings &cr, unsigned ix) { st argument [all...] |
H A D | bezier-curve.h | 65 * @param ix The (zero-based) index of the control point. Note that the caller is responsible for checking that this value is <= order(). 67 Point controlPoint(unsigned ix) const { return Point(inner[X][ix], inner[Y][ix]); } 68 Point operator[](unsigned ix) const { return Point(inner[X][ix], inner[Y][ix]); } 75 * @param ix The zero-based index of the point to modify. Note that the caller is responsible for checking that this value is <= order(). 77 void setPoint(unsigned ix, Point const &v) { argument 78 inner[X][ix] [all...] |
H A D | bezier.h | 267 Coord &operator[](unsigned ix) { return c_[ix]; } argument 268 Coord const &operator[](unsigned ix) const { return const_cast<std::valarray<Coord>&>(c_)[ix]; } 270 void setCoeff(unsigned ix, double val) { c_[ix] = val; } argument
|
H A D | toposweep.h | 51 unsigned path, ix; member in struct:Geom::CurveIx 52 CurveIx(unsigned p, unsigned i) : path(p), ix(i) {} 55 return ps[path][ix]; 58 return other.path == path && other.ix == ix; 104 Edge operator[](unsigned ix) const; 105 Edge &operator[](unsigned ix); 106 void erase(unsigned ix); 107 void insert(unsigned ix, Edge e); 115 Vertex &operator[](unsigned ix) { retur argument 175 unsigned ix; member in struct:Geom::UnionOp [all...] |
H A D | toposweep.cpp | 10 TopoGraph::Edge &TopoGraph::Vertex::operator[](unsigned ix) { argument 11 ix %= degree(); 12 return ix < enters.size() ? enters[ix] : exits[ix - enters.size()]; 15 TopoGraph::Edge TopoGraph::Vertex::operator[](unsigned ix) const { 16 ix %= degree(); 17 return ix < enters.size() ? enters[ix] : exits[ix 20 erase(unsigned ix) argument 28 insert(unsigned ix, Edge v) argument 43 remove_edge(unsigned ix, unsigned jx) argument 61 unsigned ix = 0; local 416 unsigned ix = find_vertex(vertices, s->fp, tol); local 515 add_edge_at(TopoGraph &g, unsigned ix, boost::shared_ptr<Section> s, TopoGraph::Edge jx, bool before = true) argument [all...] |
/inkscape/src/display/ |
H A D | drawing-image.cpp | 215 int ix = floor((tp[Geom::X] - _origin[Geom::X]) / vw * width); local 218 if ((ix < 0) || (iy < 0) || (ix >= width) || (iy >= height)) 221 unsigned char *pix_ptr = pixels + iy * rowstride + ix * 4;
|
H A D | canvas-grid.cpp | 940 gint const ix = round(x); local 942 grid_vline (buf, ix, buf->rect.top(), buf->rect.bottom(), color); 944 grid_vline (buf, ix, buf->rect.top(), buf->rect.bottom(), _empcolor); 971 gint const ix = round(x); local 977 grid_dot (buf, ix, iy, _colordot); // | (guint32)0x000000FF); // put alpha to max value 981 grid_dot (buf, ix-pitch, iy, _empcolor); 982 grid_dot (buf, ix+pitch, iy, _empcolor); 984 grid_dot (buf, ix, iy, _empdot ); // | (guint32)0x000000FF); // put alpha to max value 986 grid_dot (buf, ix, iy-pitch, _empcolor); 987 grid_dot (buf, ix, i [all...] |
H A D | sp-canvas.cpp | 1972 int ix = (int) round(cx); // ix and iy are the new canvas coordinates (integer screen pixels) local 1974 int dx = ix - _x0; // dx and dy specify the displacement (scroll) of the 1989 cairo_translate(cr, -ix, -iy); 2003 _x0 = ix;
|
/inkscape/src/libnrtype/ |
H A D | TextWrapper.cpp | 640 unsigned const ix = nbBound++; local 641 bounds[ix] = ib; 642 return ix;
|
/inkscape/src/extension/internal/ |
H A D | odf.cpp | 1722 double ix = img->x.value; local 1727 Geom::Rect ibbox(Geom::Point(ix, iy), Geom::Point(ix+iwidth, iy+iheight)); 1729 ix = ibbox.min()[Geom::X]; 1759 itemTransformString.c_str(), ix, iy); 1763 couts.printf("draw:transform=\"translate(%.3fcm, %.3fcm)\" ", ix, iy);
|
/inkscape/src/ui/dialog/ |
H A D | filter-effects-dialog.cpp | 2314 const int ix, const int iy) 2333 return ix >= x - h && iy >= con_y && ix <= x && iy <= points[1].get_y(); 2312 do_connection_node(const Gtk::TreeIter& row, const int input, std::vector<Gdk::Point>& points, const int ix, const int iy) argument
|