Searched defs:cy (Results 1 - 25 of 27) sorted by relevance

12

/inkscape/src/
H A Dsp-radial-gradient.h24 SVGLength cy; member in class:SPRadialGradient
H A Dsp-ellipse.h41 SVGLength cy; member in class:SPGenericEllipse
H A Dsp-spiral.h36 y(t) = rad * t^exp sin(2 * Pi * revo*t + arg) + cy \endverbatim
47 float cx, cy; member in class:SPSpiral
55 void setPosition(double cx, double cy, double exp, double revo, double rad, double arg, double t0);
H A Dsp-namedview.h56 double cy; member in class:SPNamedView
H A Dsp-spiral.cpp34 , cy(0)
50 this->readAttr("sodipodi:cy");
65 * sodipodi:spiral="cx cy exp revo rad arg t0"
69 sp_repr_set_svg_double(repr, "sodipodi:cy", this->cy);
107 if (!sp_svg_length_read_computed_absolute (value, &this->cy)) {
108 this->cy = 0.0;
338 g_print ("cx=%g, cy=%g, exp=%g, revo=%g, rad=%g, arg=%g, t0=%g\n",
340 this->cy,
390 void SPSpiral::setPosition(gdouble cx, gdouble cy, gdoubl argument
[all...]
H A Dsp-ellipse.cpp74 this->readAttr("sodipodi:cy");
84 this->readAttr("cy");
90 this->readAttr("cy");
100 // std::cout << " cy: " << cy.write() << std::endl;
108 // There are multiple ways to set internal cx, cy, rx, and ry (via SVG attributes or Sodipodi
130 if( t.read(value) ) cy = t;
131 cy.update( em, ex, h );
200 this->cy.update(em, ex, dy);
269 // << " cy
548 double cy = this->cy.computed; local
[all...]
H A Dsp-rect.cpp408 Geom::Point cy = c + Geom::Point(0, 1); local
413 cy *= this->transform;
417 gdouble eY = SPRect::vectorStretch(cy, c, xform);
H A Ddesktop.cpp796 double const cy = 0.5 * (y0 + y1); local
824 y1 = cy + 0.5 * viewbox.dimensions()[Geom::Y] / newscale;
960 SPDesktop::zoom_absolute_keep_point (double cx, double cy, double px, double py, double zoom) argument
976 cy - py * height2,
978 cy + (1 - py) * height2,
1006 SPDesktop::zoom_absolute (double cx, double cy, double zoom) argument
1008 zoom_absolute_keep_point (cx, cy, 0.5, 0.5, zoom);
1015 SPDesktop::zoom_relative_keep_point (double cx, double cy, double zoom) argument
1025 if (cy < area.min()[Geom::Y]) {
1026 cy
1043 zoom_relative(double cx, double cy, double zoom) argument
[all...]
/inkscape/src/2geom/
H A Dcircle.h61 Circle(Coord cx, Coord cy, Coord r) argument
62 : _center(cx, cy), _radius(r)
H A Dellipse.h79 Ellipse(Coord cx, Coord cy, Coord rx, Coord ry, Coord angle) argument
80 : _center(cx, cy)
97 void set(Coord cx, Coord cy, Coord rx, Coord ry, Coord a) { argument
99 _center[Y] = cy;
109 void setCenter(Coord cx, Coord cy) { _center[X] = cx; _center[Y] = cy; } argument
H A Dgeneric-rect.h207 C cy = f[Y].nearestEnd(p[Y]); local
208 if (std::abs(cx - p[X]) <= std::abs(cy - p[Y])) {
211 result[Y] = cy;
/inkscape/cxxtest/cxxtest/
H A DTestSuite.cpp93 const char *cy = (const char *)y; local
95 if ( *cx++ != *cy++ )
/inkscape/src/extension/internal/
H A Dodf.h175 cy = other.cy;
191 cy = 0.0;
212 cy != other.cy ||
239 double cy; member in class:Inkscape::Extension::Internal::GradientInfo
H A Dwmf-inout.cpp2097 double cy = pix_to_y_point( d, (rc.left + rc.right)/2.0, (rc.bottom + rc.top)/2.0 ); local
2103 tmp_ellipse << "cy=\"" << cy << "\" "; local
H A Demf-inout.cpp1822 if ((pEmr->szlMillimeters.cx + pEmr->szlMillimeters.cy) && ( pEmr->szlDevice.cx + pEmr->szlDevice.cy)){
1825 (double)(pEmr->szlMillimeters.cx + pEmr->szlMillimeters.cy)/
1826 (double)( pEmr->szlDevice.cx + pEmr->szlDevice.cy);
2042 if (!d->dc[d->level].sizeWnd.cx || !d->dc[d->level].sizeWnd.cy) {
2044 if (!d->dc[d->level].sizeWnd.cx || !d->dc[d->level].sizeWnd.cy) {
2046 d->dc[d->level].sizeWnd.cy = d->PixelsOutY;
2050 if (!d->dc[d->level].sizeView.cx || !d->dc[d->level].sizeView.cy) {
2055 if (d->dc[d->level].sizeWnd.cx && d->dc[d->level].sizeWnd.cy) {
2057 d->dc[d->level].ScaleInY = (double) d->dc[d->level].sizeView.cy / (doubl
2584 double cy = pix_to_y_point( d, (rclBox.left + rclBox.right)/2.0, (rclBox.bottom + rclBox.top)/2.0 ); local
2590 tmp_ellipse << "cy=\\"" << cy << "\\" "; local
[all...]
/inkscape/src/ui/dialog/
H A Dpolar-arrange-tab.cpp213 static Geom::Point calcPoint(float cx, float cy, float rx, float ry, float angle) argument
215 return Geom::Point(cx + cos(angle) * rx, cy + sin(angle) * ry);
327 float cx, cy; // Center of the ellipse local
341 cy = referenceEllipse->cy.value;
357 cy = centerY.getValue("px");
373 Geom::Point realCenter = Geom::Point(cx, cy) * transformation;
384 Geom::Point newLocation = calcPoint(cx, cy, rx, ry, angle) * transformation;
H A Dclonetiler.cpp1419 double cx, double cy,
1583 Geom::Affine drot_c = Geom::Translate(-cx, -cy) * Geom::Rotate (M_PI*dr/180) * Geom::Translate(cx, cy);
1585 Geom::Affine dscale_c = Geom::Translate(-cx, -cy) * Geom::Scale (scalex, scaley) * Geom::Translate(cx, cy);
1589 Geom::Affine rotate_180_c = Geom::Translate(-cx, -cy) * Geom::Rotate (M_PI) * Geom::Translate(cx, cy);
1591 Geom::Affine rotate_90_c = Geom::Translate(-cx, -cy) * Geom::Rotate (-M_PI/2) * Geom::Translate(cx, cy);
1592 Geom::Affine rotate_m90_c = Geom::Translate(-cx, -cy) * Geo
1411 clonetiler_get_transform( int type, int i, int j, double cx, double cy, double w, double h, double shiftx_per_i, double shifty_per_i, double shiftx_per_j, double shifty_per_j, double shiftx_rand, double shifty_rand, double shiftx_exp, double shifty_exp, int shiftx_alternate, int shifty_alternate, int shiftx_cumulate, int shifty_cumulate, int shiftx_excludew, int shifty_excludeh, double scalex_per_i, double scaley_per_i, double scalex_per_j, double scaley_per_j, double scalex_rand, double scaley_rand, double scalex_exp, double scaley_exp, double scalex_log, double scaley_log, int scalex_alternate, int scaley_alternate, int scalex_cumulate, int scaley_cumulate, double rotate_per_i, double rotate_per_j, double rotate_rand, int rotate_alternatei, int rotate_alternatej, int rotate_cumulatei, int rotate_cumulatej ) argument
2373 double cy = 0; local
[all...]
/inkscape/src/svg/
H A Dpath-string.h100 PathString &quadTo(Geom::Coord cx, Geom::Coord cy, Geom::Coord x, Geom::Coord y) { argument
101 return quadTo(Geom::Point(cx, cy), Geom::Point(x, y));
/inkscape/src/libavoid/
H A Dvisibility.cpp612 Sint16 cy = (int) currPt.y; local
667 cx + canx, cy + cany, 255, 0, 0, 75);
/inkscape/src/livarot/
H A DShapeMisc.cpp731 Shape::MakeOffset (Shape * a, double dec, JoinType join, double miter, bool do_profile, double cx, double cy, double radius, Geom::Affine *i2doc) argument
809 double x = (Geom::L2(ptP * (*i2doc) - Geom::Point(cx,cy))/radius);
/inkscape/src/ui/widget/
H A Dcolor-slider.cpp317 gint cx, cy, cw, ch; local
323 cy = padding.get_top();
328 cy = style->get_ythickness();
331 ch = allocation.get_height() - 2 * cy;
338 ay = cy;
341 ay = cy;
/inkscape/src/extension/internal/filter/
H A Dcolor.h1383 "<param name=\"cy\" gui-text=\"" N_("Y") "\" type=\"float\" indent=\"1\" appearance=\"full\" precision=\"2\" min=\"-100.\" max=\"100.\">-6</param>\n"
1414 std::ostringstream cy; local
1426 cy << ext->get_param_float("cy");
1451 cx.str().c_str(), cy.str().c_str(),
/inkscape/src/display/
H A Dsp-canvas.cpp1968 void SPCanvas::scrollTo(double cx, double cy, unsigned int clear, bool is_scrolling) argument
1973 int iy = (int) round(cy); // cx might be negative, so (int)(cx + 0.5) will not do!
2002 _dy0 = cy;
/inkscape/src/extension/dbus/
H A Ddocument-interface.cpp391 document_interface_ellipse_center (DocumentInterface *doc_interface, int cx, int cy, argument
397 sp_repr_set_int(newNode, "sodipodi:cy", cy);
404 document_interface_polygon (DocumentInterface *doc_interface, int cx, int cy, argument
413 sp_repr_set_int(newNode, "sodipodi:cy", cy);
426 document_interface_star (DocumentInterface *doc_interface, int cx, int cy, argument
434 sp_repr_set_int(newNode, "sodipodi:cy", cy);
468 document_interface_spiral (DocumentInterface *doc_interface, int cx, int cy, argument
[all...]
/inkscape/src/ui/tools/
H A Dflood-tool.cpp889 int cy = (int)color_point[Geom::Y]; local
891 guint32 orig_color = get_pixel(px, cx, cy, stride);
894 unsigned char *trace_t = get_trace_pixel(trace_px, cx, cy, width);
896 if (check_if_pixel_is_paintable(px, trace_px, cx, cy, orig_color, bci)) {
897 shift_point_onto_queue(&fill_queue, bci.max_queue_size, trace_t, cx, cy);

Completed in 242 milliseconds

12