mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
24 lines
296 B
C++
24 lines
296 B
C++
#include "Painter.h"
|
|
|
|
namespace Upp {
|
|
|
|
void LinearPathConsumer::End()
|
|
{
|
|
}
|
|
|
|
void LinearPathFilter::End()
|
|
{
|
|
PutEnd();
|
|
}
|
|
|
|
void Transformer::Move(const Pointf& p)
|
|
{
|
|
PutMove(xform.Transform(p));
|
|
}
|
|
|
|
void Transformer::Line(const Pointf& p)
|
|
{
|
|
PutLine(xform.Transform(p));
|
|
}
|
|
|
|
}
|