/inkscape/src/live_effects/ |
H A D | lpegroupbbox.cpp | 28 Geom::Affine transform; local 30 transform = lpeitem->i2doc_affine(); 33 transform = Geom::identity(); 36 Geom::OptRect bbox = lpeitem->geometricBounds(transform);
|
/inkscape/share/extensions/ |
H A D | pixelsnap.py | 5 group or layer that has it's own transform, that won't be taken into 10 group/layer, or remove the transform on the group/layer. 23 transform the appropriate handle according to the relevant fraction_offset 95 def invert_transform(transform): 96 transform = transform[:] # duplicate list to avoid modifying it 97 transform += [[0, 0, 1]] 98 inverse = matrix(transform).I.tolist() 102 def transform_point(transform, pt, inverse=False): 108 transform 195 def transform(self, elem, setval=None, parent_transform=None): member in class:PixelSnapEffect [all...] |
H A D | inkweb.js | 134 att == "transform" 173 conf.transform = el.transform.baseVal.consolidate(); 174 if ( ! conf.transform ) { 175 conf.transform = el.ownerSVGElement.createSVGTransform(); 177 el.transform.baseVal.clear(); 178 el.transform.baseVal.appendItem(conf.transform); 182 conf.transform.matrix.e += conf.xInc; 183 conf.transform [all...] |
/inkscape/src/svg/ |
H A D | svg-affine.cpp | 33 sp_svg_transform_read(gchar const *str, Geom::Affine *transform) argument 100 /* ok, have parsed keyword and args, now modify the transform */ 150 *transform = a; 157 sp_svg_transform_write(Geom::Affine const &transform) argument 161 double e = 0.000001 * transform.descrim(); 167 if (transform[0] == 0 && transform[1] == 0 && transform[2] == 0 && 168 transform[3] == 0 && transform[ 287 sp_svg_transform_write(Geom::Affine const *transform) argument [all...] |
H A D | svg.h | 56 bool sp_svg_transform_read(char const *str, Geom::Affine *transform); 58 char *sp_svg_transform_write(Geom::Affine const &transform); 59 char *sp_svg_transform_write(Geom::Affine const *transform);
|
/inkscape/src/libnrtype/ |
H A D | font-style.h | 14 Geom::Affine transform; // the ctm. contains the font-size member in struct:font_style
|
/inkscape/src/extension/internal/ |
H A D | emf-print.h | 34 unsigned int print_pathv (Geom::PathVector const &pathv, const Geom::Affine &transform); 35 bool print_simple_shape (Geom::PathVector const &pathv, const Geom::Affine &transform); 62 Geom::Affine const &transform, 73 Geom::PathVector merge_PathVector_with_group(Geom::PathVector const &combined_pathvector, SPItem const *item, const Geom::Affine &transform); 74 Geom::PathVector merge_PathVector_with_shape(Geom::PathVector const &combined_pathvector, SPItem const *item, const Geom::Affine &transform); 75 unsigned int draw_pathv_to_EMF(Geom::PathVector const &pathv, const Geom::Affine &transform); 83 int create_pen(SPStyle const *style, const Geom::Affine &transform);
|
H A D | wmf-print.h | 34 unsigned int print_pathv (Geom::PathVector const &pathv, const Geom::Affine &transform); 35 bool print_simple_shape (Geom::PathVector const &pathv, const Geom::Affine &transform); 62 Geom::Affine const &transform, 74 int create_pen(SPStyle const *style, const Geom::Affine &transform);
|
H A D | latex-text-renderer.h | 68 void push_transform(Geom::Affine const &transform); 69 Geom::Affine const & transform();
|
H A D | cairo-render-context.h | 62 Geom::Affine item_transform; // this item's item->transform, for correct clipping 67 Geom::Affine transform; // the CTM member in struct:Inkscape::Extension::Internal::CairoRenderState 141 void transform(Geom::Affine const &transform); 142 void setTransform(Geom::Affine const &transform); 222 void _initCairoMatrix(cairo_matrix_t *matrix, Geom::Affine const &transform); 224 void _concatTransform(cairo_t *cr, Geom::Affine const &transform);
|
/inkscape/src/extension/ |
H A D | print.cpp | 61 Print::bind (const Geom::Affine &transform, float opacity) argument 63 return imp->bind (this, transform, opacity); 94 const Geom::Affine &transform, const SPStyle *style) 96 return imp->image (this, px, w, h, rs, transform, style); 93 image(unsigned char *px, unsigned int w, unsigned int h, unsigned int rs, const Geom::Affine &transform, const SPStyle *style) argument
|
H A D | print.h | 47 unsigned int bind (Geom::Affine const &transform, 58 Geom::Affine const &transform, 67 Geom::Affine const &transform,
|
/inkscape/src/livarot/ |
H A D | path-description.h | 40 virtual void transform(Geom::Affine const &/*t*/) {} function in struct:PathDescr 56 void transform(Geom::Affine const &t); 69 void transform(Geom::Affine const &t); 82 void transform(Geom::Affine const &t); 98 void transform(Geom::Affine const &t); 112 void transform(Geom::Affine const &t); 128 void transform(Geom::Affine const &t);
|
H A D | path-description.cpp | 14 void PathDescrMoveTo::transform(Geom::Affine const& t) function in class:PathDescrMoveTo 35 void PathDescrLineTo::transform(Geom::Affine const& t) function in class:PathDescrLineTo 51 void PathDescrBezierTo::transform(Geom::Affine const& t) function in class:PathDescrBezierTo 67 void PathDescrIntermBezierTo::transform(Geom::Affine const& t) function in class:PathDescrIntermBezierTo 103 void PathDescrCubicTo::transform(Geom::Affine const& t) function in class:PathDescrCubicTo 130 void PathDescrArcTo::transform(Geom::Affine const& t) function in class:PathDescrArcTo
|
/inkscape/src/ |
H A D | sp-path.cpp | 290 Geom::Affine SPPath::set_transform(Geom::Affine const &transform) { argument 291 if (!_curve) { // 0 nodes, nothing to transform 298 // if path has the CLONE_ORIGINAL LPE applied, don't write the transform to the pathdata, but write it 'unoptimized' 300 return transform; 302 _curve_before_lpe->transform(transform); 305 _curve->transform(transform); 309 this->adjust_stroke(transform.descrim()); 312 this->adjust_pattern(transform); [all...] |
H A D | print.h | 35 unsigned int sp_print_bind(SPPrintContext *ctx, Geom::Affine const &transform, float opacity); 45 Geom::Affine const &transform, SPStyle const *style);
|
H A D | sp-item.h | 146 Geom::Affine transform; member in class:SPItem 237 Geom::OptRect geometricBounds(Geom::Affine const &transform = Geom::identity()) const; 244 Geom::OptRect visualBounds(Geom::Affine const &transform = Geom::identity()) const; 246 Geom::OptRect bounds(BBoxType type, Geom::Affine const &transform = Geom::identity()) const; 318 * Recursively compensate pattern or gradient transform. 325 * Set a new transform on an object. 327 * Compensate for stroke scaling and gradient/pattern fill transform, if 330 * the repr is updated with the new transform. 332 void doWriteTransform(Inkscape::XML::Node *repr, Geom::Affine const &transform, Geom::Affine const *adv = NULL, bool compensate = true); 335 * Sets item private transform (no [all...] |
H A D | sp-use.cpp | 202 Geom::OptRect SPUse::bbox(Geom::Affine const &transform, SPItem::BBoxType bboxtype) const { argument 206 Geom::Affine const ct(child->transform * Geom::Translate(this->x.computed, this->y.computed) * transform ); 351 * Returns the effective transform that goes from the ultimate original to given SPUse, both ends 369 // calculate the accummulated transform, starting from the original 376 // right-side) of the transform attribute on the generated 'g', where x and y 385 t *= i_tem->transform; 393 * Returns the transform that leads to the use from its immediate original. 394 * Does not inlcude the original's transform if any. 403 t *= this->transform; [all...] |
H A D | cms-system.h | 36 static void doTransform(cmsHTRANSFORM transform, void *inBuf, void *outBuf, unsigned int size);
|
H A D | print.cpp | 32 sp_print_bind(SPPrintContext *ctx, Geom::Affine const &transform, float opacity) argument 34 return ctx->module->bind(transform, opacity); 66 Geom::Affine const &transform, SPStyle const *style) 68 return ctx->module->image(px, w, h, rs, transform, style); 64 sp_print_image_R8G8B8A8_N(SPPrintContext *ctx, guchar *px, unsigned int w, unsigned int h, unsigned int rs, Geom::Affine const &transform, SPStyle const *style) argument
|
H A D | sp-tspan.h | 35 virtual Geom::OptRect bbox(Geom::Affine const &transform, SPItem::BBoxType type) const;
|
H A D | sp-line.cpp | 127 Geom::Affine SPLine::set_transform(Geom::Affine const &transform) { argument 133 points[0] *= transform; 134 points[1] *= transform; 141 this->adjust_stroke(transform.descrim());
|
H A D | sp-line.h | 38 virtual Geom::Affine set_transform(Geom::Affine const &transform);
|
H A D | sp-image.h | 59 virtual Geom::OptRect bbox(Geom::Affine const &transform, SPItem::BBoxType type) const; 65 virtual Geom::Affine set_transform(Geom::Affine const &transform);
|
/inkscape/src/libdepixelize/priv/ |
H A D | simplifiedvoronoi.h | 214 * changes to this node **MUST** occur through \p transform or _adjust. 234 PointTransform transform, 886 PointTransform transform, 920 transform(borderMid, 1, 1); 926 transform(vertices[0], 1, 0); 929 transform(vertices[1], 0, 1); 941 transform(another, 955 transform(another, 970 transform(another, 983 transform(vertice 881 _genericComplexBottomRight(PixelGraph::const_iterator a_it, PixelGraph::const_iterator b_it, PixelGraph::const_iterator c_it, PixelGraph::const_iterator d_it, Cell *const cells_it, int x, int y, PointTransform transform, NodeTransform, NodeTransform topright, NodeTransform right, NodeTransform bottomright, NodeTransform bottom, NodeTransform bottomleft, NodeTransform, NodeTransform topleft) argument [all...] |