This commit is contained in:
Alexey
2023-03-05 13:27:15 +03:00
parent 0d06216215
commit 118783c716

View File

@ -80,19 +80,19 @@ namespace NSDocxRenderer
void CVectorGraphics::Close()
{
VectorGraphicsType type = vgtCurve;
VectorGraphicsType type = vgtClose;
m_arData.push_back({type, {}});
}
void CVectorGraphics::Clear()
{
m_arData.clear();
ResetBorders();
}
void CVectorGraphics::End()
{
Clear();
ResetBorders();
}
void CVectorGraphics::CheckPoint(const Point& point)