| /inkscape/src/ |
| H A D | sp-line.cpp | 80 double const ex = em * 0.5; // fixme: get from pango or libnrtype. local 82 this->x1.update(em, ex, w); 83 this->x2.update(em, ex, w); 84 this->y1.update(em, ex, h); 85 this->y2.update(em, ex, h);
|
| H A D | sp-tspan.cpp | 116 double const ex = 0.5 * em; // fixme: get x height from pango or libnrtype. local 118 attributes.update( em, ex, w, h ); 331 double const ex = 0.5 * em; // fixme: get x height from pango or libnrtype. local 333 attributes.update( em, ex, w, h );
|
| H A D | text-chemistry.cpp | 409 double ex = (flowtext->transform).descrim(); local 444 text->_adjustFontsizeRecursive(text, ex);
|
| H A D | sp-ellipse.cpp | 117 double const ex = em * 0.5; local 124 cx.update( em, ex, w ); 131 cy.update( em, ex, h ); 138 rx.update( em, ex, w ); 145 ry.update( em, ex, h ); 153 rx.update( em, ex, d ); 154 ry.update( em, ex, d ); 197 double const ex = em * 0.5; // fixme: get from pango or libnrtype local 199 this->cx.update(em, ex, dx); 200 this->cy.update(em, ex, d [all...] |
| H A D | sp-rect.cpp | 59 double const ex = em * 0.5; local 64 this->x.update( em, ex, w ); 70 this->y.update( em, ex, h ); 78 this->width.update( em, ex, w ); 86 this->height.update( em, ex, h ); 94 this->rx.update( em, ex, w ); 102 this->ry.update( em, ex, h ); 119 double const ex = 0.5 * em; // fixme: get x height from pango or libnrtype. local 121 this->x.update(em, ex, w); 122 this->y.update(em, ex, [all...] |
| H A D | sp-offset.cpp | 883 Geom::Point ex = theRes->getPoint(theRes->getEdge(i).en).x; local 884 Geom::Point nx = ex - sx;
|
| H A D | sp-flowtext.cpp | 682 double const ex = xform.descrim(); local 683 if (ex == 0) { 703 ret[0] /= ex; 704 ret[1] /= ex; 705 ret[2] /= ex; 706 ret[3] /= ex; 709 text->_adjustFontsizeRecursive (this, ex); 712 this->adjust_stroke_width_recursive (ex);
|
| H A D | sp-namedview.cpp | 1024 SPException ex; local 1025 SP_EXCEPTION_INIT(&ex); 1026 return this->getAttribute("id", &ex);
|
| H A D | sp-text.cpp | 190 double const ex = 0.5 * em; // fixme: get x height from pango or libnrtype. local 192 attributes.update( em, ex, w, h ); 428 double const ex = xform.descrim(); local 429 if (ex == 0) { 434 ret[0] /= ex; 435 ret[1] /= ex; 436 ret[2] /= ex; 437 ret[3] /= ex; 440 this->_adjustCoordsRecursive (this, xform * ret.inverse(), ex); 443 this->_adjustFontsizeRecursive (this, ex); 636 _adjustFontsizeRecursive(SPItem *item, double ex, bool is_root) argument 660 _adjustFontsizeRecursive(SP_ITEM(o), ex, false); local 664 _adjustCoordsRecursive(SPItem *item, Geom::Affine const &m, double ex, bool is_root) argument 679 _adjustCoordsRecursive(SP_ITEM(o), m, ex, false); local 739 double const ex = em * 0.5; local 769 update( double em, double ex, double w, double h ) argument [all...] |
| H A D | style.cpp | 101 // for calculated values (through 'em' and 'ex'). ('ex' is currently not read.) 102 // The following properties can depend on 'em' and 'ex': 289 // 'font-size'/'font' must be before properties that need to know em, ex size (SPILength, 386 // // 'font-size' must be before properties that need to know em, ex size (SPILength, SPILengthOrNormal) 1525 case SP_CSS_UNIT_EX: return "ex"; 1894 double ex, bool only_with_units = false) 1899 double wd = g_ascii_strtod(w, &units) * ex; 1905 // 'e' matches 'em' or 'ex' 1919 sp_css_attr_scale_property_list(SPCSSAttr *css, gchar const *property, double ex) argument 1893 sp_css_attr_scale_property_single(SPCSSAttr *css, gchar const *property, double ex, bool only_with_units = false) argument 1952 sp_css_attr_scale(SPCSSAttr *css, double ex) argument [all...] |
| H A D | sp-object.cpp | 1240 gchar const *SPObject::getTagName(SPException *ex) const 1244 if (!SP_EXCEPTION_IS_OK(ex)) { 1253 gchar const *SPObject::getAttribute(gchar const *key, SPException *ex) const 1257 if (!SP_EXCEPTION_IS_OK(ex)) { 1266 void SPObject::setAttribute(gchar const *key, gchar const *value, SPException *ex) argument 1270 g_return_if_fail(SP_EXCEPTION_IS_OK(ex)); 1276 void SPObject::setAttribute(char const *key, Glib::ustring const &value, SPException *ex) argument 1278 setAttribute(key, value.empty() ? NULL : value.c_str(), ex); 1280 void SPObject::setAttribute(Glib::ustring const &key, Glib::ustring const &value, SPException *ex) argument 1283 value.empty() ? NULL : value.c_str(), ex); 1287 removeAttribute(gchar const *key, SPException *ex) argument [all...] |
| H A D | selection-chemistry.cpp | 1227 double ex = item->i2doc_affine().descrim(); local 1228 if (ex != 1.0) { 1229 css = sp_css_attr_scale(css, ex);
|
| /inkscape/src/ui/dialog/ |
| H A D | object-properties.cpp | 476 SPException ex; local 478 SP_EXCEPTION_INIT(&ex); 479 item->setAttribute("id", id, &ex);
|
| /inkscape/src/2geom/ |
| H A D | angle.h | 304 Coord ex = extent(); local 305 Coord outex = 2*M_PI - ex; 310 return (a - _start_angle).radians0() / ex; 312 return -(_start_angle - a).radians0() / ex; 318 return (_start_angle - a).radians0() / ex; 320 return -(a - _start_angle).radians0() / ex;
|
| /inkscape/src/livarot/ |
| H A D | PathStroke.cpp | 274 const Geom::Point ex = pos - width * nor; local 276 rightNo = dest->AddPoint (ex); 278 RecRound (dest, rightNo, leftNo, ex, sx, -nor, nor, pos, width); 307 const Geom::Point ex = pos - width * pnor; local 309 stNo[RIGHT] = enNo[LEFT] = dest->AddPoint (ex); 311 RecRound (dest, enNo[LEFT], stNo[LEFT], ex, sx, -pnor, pnor, pos, width); 352 Geom::Point ex = pos - width * nnor; local 353 enNo[RIGHT] = dest->AddPoint(ex); 356 sx, ex, -pnor, -nnor, pos, width); 398 Geom::Point ex local 536 const Geom::Point ex = pos + width * nnor; local 647 const Geom::Point ex = pos - width * nnor; local [all...] |