Redact 8xN

This commit is contained in:
Svetlana Kulikova
2025-10-07 18:37:32 +03:00
parent 9900726e43
commit a3d947d855
15 changed files with 174 additions and 96 deletions

View File

@ -142,8 +142,12 @@ namespace PdfWriter
std::string DateNow();
std::wstring NormalizeWhitespace(const std::wstring& s);
// Пересечение по теореме о разделяющей оси
// Пересечение многоугольников по теореме о разделяющей оси
bool SAT(const std::vector<CPoint>& poly1, const std::vector<CPoint>& poly2);
// Проверка принадлежности точки выпуклому четырехугольнику
bool isPointInQuad(double px, double py,
double x1, double y1, double x2, double y2,
double x3, double y3, double x4, double y4);
}
#endif // _PDF_WRITER_SRC_UTILS_H