mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
SvgArc support
git-svn-id: svn://ultimatepp.org/upp/trunk@863 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
511dc40a45
commit
30b677638f
13 changed files with 303 additions and 11 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue