SvgArc support

git-svn-id: svn://ultimatepp.org/upp/trunk@863 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-02-14 20:21:26 +00:00
parent 511dc40a45
commit 30b677638f
13 changed files with 303 additions and 11 deletions

View file

@ -57,6 +57,16 @@ void PaintingPainter::ArcOp(const Pointf& c, const Pointf& r, double angle, doub
Putf(sweep);
}
void PaintingPainter::SvgArcOp(const Pointf& r, double xangle, bool large, bool sweep, const Pointf& p, bool rel)
{
Put(PAINTING_SVGARC + rel);
Putf(r);
Putf(xangle);
Put(large);
Put(sweep);
Putf(p);
}
void PaintingPainter::CloseOp()
{
Put(PAINTING_CLOSE);