Add drawing line, text, arc methods for PICT

This commit is contained in:
Prokhorov Kirill
2025-08-27 07:20:58 +03:00
parent a488266ba1
commit 2b54cfaf37
2 changed files with 469 additions and 603 deletions

File diff suppressed because it is too large Load Diff

View File

@ -345,8 +345,9 @@ typedef struct
template<typename T>
struct Point {
T X;
T Y;
T X{0};
T Y{0};
Point() {}
Point(T x, T y) : X(x), Y(y) {}
};
@ -376,7 +377,6 @@ typedef struct
size_t m_nPixelsSize;
size_t colors;
SplayTreeInfo* profiles;
SplayTreeInfo* artifacts;
double fuzz;