implement brush sampling and spacing into the Stroke class

This commit is contained in:
2017-03-27 00:20:04 +01:00
parent a385addae5
commit b9277f94e8
3 changed files with 76 additions and 39 deletions

View File

@@ -1875,7 +1875,7 @@ public:
{
if (new_size.x > m_canvas->m_width)
{
m_canvas->create(new_size.x, new_size.y);
m_canvas->create((int)new_size.x, (int)new_size.y);
m_canvas->clear();
}
}