Files
z-bar-qt/Plugins/ZShell/Internal/stroke.hpp
T
zach 80d5f13663
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 10s
Python / lint-format (pull_request) Successful in 14s
Python / test (pull_request) Successful in 32s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m7s
cursor crosshair + outline of pen width
2026-06-22 11:52:11 +02:00

20 lines
269 B
C++

#pragma once
#include <QColor>
#include <QPointF>
#include <QVector>
#include <QCanvasPath>
namespace ZShell::internal {
struct Stroke {
QVector<QPointF> points;
QCanvasPath path;
QColor color;
float width;
int groupId = -1;
bool isSinglePoint = false;
};
};