mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
Add drawing line, text, arc methods for PICT
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user