/inkscape/src/ |
H A D | sp-switch.cpp | 141 Inkscape::DrawingItem *ac = child->invoke_show (drawing, key, flags); local 143 if (ac) { 144 ai->appendChild(ac);
|
H A D | sp-clippath.cpp | 114 Inkscape::DrawingItem *ac = SP_ITEM(ochild)->invoke_show(v->arenaitem->drawing(), v->key, SP_ITEM_REFERENCE_FLAGS); local 116 if (ac) { 117 v->arenaitem->prependChild(ac); 205 Inkscape::DrawingItem *ac = SP_ITEM(child)->invoke_show(drawing, key, SP_ITEM_REFERENCE_FLAGS); local 207 if (ac) { 209 ai->appendChild(ac);
|
H A D | sp-mask.cpp | 124 Inkscape::DrawingItem *ac = SP_ITEM (ochild)->invoke_show(v->arenaitem->drawing(), v->key, SP_ITEM_REFERENCE_FLAGS); local 126 if (ac) { 127 v->arenaitem->prependChild(ac); 239 Inkscape::DrawingItem *ac = SP_ITEM (child)->invoke_show (drawing, key, SP_ITEM_REFERENCE_FLAGS); local 241 if (ac) { 242 ai->prependChild(ac);
|
H A D | sp-use.cpp | 284 Inkscape::DrawingItem *ac = this->child->invoke_show(drawing, key, flags); local 286 if (ac) { 287 ai->prependChild(ac);
|
H A D | sp-hatch.cpp | 118 Inkscape::DrawingItem *ac = path_child->show(iter->arenaitem->drawing(), iter->key, extents); local 121 if (ac) { 122 iter->arenaitem->prependChild(ac);
|
H A D | sp-item-group.cpp | 98 Inkscape::DrawingItem *ac = item->invoke_show (v->arenaitem->drawing(), v->key, v->flags); local 100 if (ac) { 101 v->arenaitem->appendChild(ac); 113 Inkscape::DrawingItem *ac = item->invoke_show (v->arenaitem->drawing(), v->key, v->flags); local 115 if (ac) { 116 v->arenaitem->prependChild(ac); 117 ac->setZOrder(position); 782 Inkscape::DrawingItem *ac = NULL; local 788 ac = child->invoke_show (drawing, key, flags); 789 if (ac) { [all...] |
H A D | sp-item.cpp | 1116 Inkscape::DrawingItem *ac = cp->show(drawing, clip_key); local 1117 ai->setClip(ac); 1132 Inkscape::DrawingItem *ac = mask->sp_mask_show(drawing, mask_key); local 1133 ai->setMask(ac);
|
/inkscape/src/2geom/ |
H A D | concepts.h | 113 AffineClosure ac; member in struct:Geom::ShapeConcept 126 ac = shape; 127 ac *= m;
|
H A D | angle.h | 165 Coord ac = a.radians0(); local 167 Coord d = fabs(ac - bc);
|
H A D | ellipse.cpp | 620 Ellipse ac = a, bc = b; local 621 if (distance(ac.rotationAngle(), bc.rotationAngle()).radians0() >= M_PI/2) { 622 ac.setRotationAngle(ac.rotationAngle() + M_PI); 624 if (distance(ac.rotationAngle(), bc.rotationAngle()) >= M_PI/4) { 625 Angle d1 = distance(ac.rotationAngle() + M_PI/2, bc.rotationAngle()); 626 Angle d2 = distance(ac.rotationAngle() - M_PI/2, bc.rotationAngle()); 628 ac.setRotationAngle(ac.rotationAngle() + adj); 629 ac [all...] |
/inkscape/src/display/ |
H A D | sodipodi-ctrl.cpp | 526 guint32 ac = cc & 0xff; local 527 if (ac == 0 && cc != 0) { 531 guint32 ro = compose_xor(rb, (cc & 0xff000000) >> 24, ac); 532 guint32 go = compose_xor(gb, (cc & 0x00ff0000) >> 16, ac); 533 guint32 bo = compose_xor(bb, (cc & 0x0000ff00) >> 8, ac);
|
/inkscape/src/libcola/ |
H A D | gradient_projection.h | 220 AlignmentConstraint* ac=*iac; local 221 vpsc::Variable *v=ac->variable=new vpsc::Variable(vars.size(),ac->position,0.0001); 223 for(OffsetList::iterator o=ac->offsets.begin(); 224 o!=ac->offsets.end();
|
/inkscape/src/ui/tools/ |
H A D | flood-tool.cpp | 212 guint32 ac = 0, rc = 0, gc = 0, bc = 0; local 213 ExtractARGB32(check, ac, rc, gc, bc); 227 double dac = ac; 235 return abs(static_cast<int>(ac) - ao) <= threshold; 237 return abs(static_cast<int>(ac ? unpremul_alpha(rc, ac) : 0) - (ao ? unpremul_alpha(ro, ao) : 0)) <= threshold; 239 return abs(static_cast<int>(ac ? unpremul_alpha(gc, ac) : 0) - (ao ? unpremul_alpha(go, ao) : 0)) <= threshold; 241 return abs(static_cast<int>(ac ? unpremul_alpha(bc, ac) [all...] |