Lines Matching defs:tmp_rectangle

2611             SVGOStringStream tmp_rectangle;
2612 tmp_rectangle << "\n\tM " << pix_to_xy( d, rc.left , rc.top ) << " ";
2613 tmp_rectangle << "\n\tL " << pix_to_xy( d, rc.right, rc.top ) << " ";
2614 tmp_rectangle << "\n\tL " << pix_to_xy( d, rc.right, rc.bottom ) << " ";
2615 tmp_rectangle << "\n\tL " << pix_to_xy( d, rc.left, rc.bottom ) << " ";
2616 tmp_rectangle << "\n\tz";
2620 tmp_path << tmp_rectangle.str().c_str();
2635 SVGOStringStream tmp_rectangle;
2636 tmp_rectangle << "\n"
2640 tmp_rectangle << " C "
2647 tmp_rectangle << " L "
2650 tmp_rectangle << " C "
2657 tmp_rectangle << " L "
2660 tmp_rectangle << " C "
2667 tmp_rectangle << " L "
2670 tmp_rectangle << " C "
2677 tmp_rectangle << " z\n";
2682 tmp_path << tmp_rectangle.str().c_str();
2953 SVGOStringStream tmp_rectangle;
2954 tmp_rectangle << "\n\tM " << pix_to_xy( d, dx, dy ) << " ";
2955 tmp_rectangle << "\n\tL " << pix_to_xy( d, dx + dw, dy ) << " ";
2956 tmp_rectangle << "\n\tL " << pix_to_xy( d, dx + dw, dy + dh ) << " ";
2957 tmp_rectangle << "\n\tL " << pix_to_xy( d, dx, dy + dh ) << " ";
2958 tmp_rectangle << "\n\tz";
2964 tmp_path << tmp_rectangle.str().c_str();
3441 SVGOStringStream tmp_rectangle;
3445 tmp_rectangle << "\n<path d=\"";
3447 tmp_rectangle << "\n\tM " << pix_to_xy( d, tv[rcs[i].UpperLeft ].x , tv[rcs[i].UpperLeft ].y ) << " ";
3448 tmp_rectangle << "\n\tL " << pix_to_xy( d, tv[rcs[i].LowerRight].x , tv[rcs[i].UpperLeft ].y ) << " ";
3449 tmp_rectangle << "\n\tL " << pix_to_xy( d, tv[rcs[i].LowerRight].x , tv[rcs[i].LowerRight].y ) << " ";
3450 tmp_rectangle << "\n\tL " << pix_to_xy( d, tv[rcs[i].UpperLeft ].x , tv[rcs[i].LowerRight].y ) << " ";
3451 tmp_rectangle << "\n\tz\"";
3452 tmp_rectangle << "\n\tstyle=\"stroke:none;fill:url(#";
3453 tmp_rectangle << d->gradients.strings[fill_idx];
3454 tmp_rectangle << ");\"\n";
3456 tmp_rectangle << "\tclip-path=\"url(#clipEmfPath" << d->dc[d->level].clip_id << ")\"\n";
3458 tmp_rectangle << "/>\n";
3460 d->outsvg += tmp_rectangle.str().c_str();