2019-05-10 18:56:19 +02:00
|
|
|
#ifndef BITMAPLINE_H
|
|
|
|
#define BITMAPLINE_H
|
|
|
|
|
2023-09-07 09:31:23 +02:00
|
|
|
#include <QVector>
|
|
|
|
|
2019-05-10 18:56:19 +02:00
|
|
|
class QPainter;
|
|
|
|
class QImage;
|
|
|
|
class QPolygonF;
|
2024-11-08 16:39:01 +01:00
|
|
|
class QPainterPath;
|
2019-05-10 18:56:19 +02:00
|
|
|
|
|
|
|
namespace BitmapLine
|
|
|
|
{
|
|
|
|
void draw(QPainter *painter, const QPolygonF &line, const QImage &img);
|
2023-09-07 09:31:23 +02:00
|
|
|
void draw(QPainter *painter, const QVector<QPolygonF> &lines,
|
|
|
|
const QImage &img);
|
2024-11-08 16:39:01 +01:00
|
|
|
void draw(QPainter *painter, const QPainterPath &line, const QImage &img);
|
2019-05-10 18:56:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // BITMAPLINE_H
|