drawing reworked into c++ plugin, moved input handler to Interactions.qml as a PointHandler
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <QColor>
|
||||
#include <QPointF>
|
||||
#include <QVector>
|
||||
|
||||
namespace ZShell::internal {
|
||||
|
||||
struct Stroke {
|
||||
QVector<QPointF> points;
|
||||
QColor color;
|
||||
float width;
|
||||
};
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user