s.Printf ( wxT(" <rect x=\"%d\" y=\"%d\" width=\"%d\" height=\"%d\" rx=\"%s\" "),
x, y, width, height, NumStr(radius) );
- s = s + wxT(" /> ") + wxT("\n");
+ s = s + wxT(" /> \n");
write(s);
wxASSERT_MSG(!wxSVG_DEBUG, wxT("wxSVGFileDC::DoDrawRoundedRectangle Call executed"));
else
s = s + wxT("fill-rule:nonzero; ");
- s = s + wxT("\" \npoints=\"");
+ s = s + wxT("\" \npoints=\"");
for (int i = 0; i < n; i++)
{
s = s + sTmp + wxT("\n");
CalcBoundingBox ( points [i].x+xoffset, points[i].y+yoffset);
}
- s = s + wxT("\" /> ");
- s = s + wxT("\n");
+ s = s + wxT("\" /> \n");
write(s);
wxASSERT_MSG(!wxSVG_DEBUG, wxT("wxSVGFileDC::DoDrawPolygon Call executed"));
wxString s;
s.Printf ( wxT("<ellipse cx=\"%d\" cy=\"%d\" rx=\"%d\" ry=\"%d\" "), x+rw,y+rh, rw, rh );
- s = s + wxT(" /> ") + wxT("\n");
+ s = s + wxT(" /> \n");
write(s);
x1,y1, NumStr(r1), NumStr(r2), fArc, fSweep, x2, y2, xc, yc );
// the z means close the path and fill
- s = s + wxT(" \" /> ") + wxT("\n");
+ s = s + wxT(" \" /> \n");
if (m_OK)
int(xs), int(ys), int(rx), int(ry),
fArc, fSweep, int(xe), int(ye), int(xc), int(yc) );
-
- s = s + wxT(" \" /> ") + wxT("\n");
+ s = s + wxT(" \" /> \n");
if (m_OK)
{