204 constexpr
float mid = 2.0;
255 inline Line make_line(
256 int32_t brush_type = 1,
258 int32_t unknown_line_attribute = 0,
259 float brush_base_size = 2.125,
260 std::list< Point > points = std::list< Point >{}
265 newLine.color = color;
266 newLine.unknown_line_attribute = unknown_line_attribute;
267 newLine.brush_base_size = brush_base_size;
268 newLine.npoints = points.size();
269 newLine.points = points;
float brush_base_size
Definition: Line.hpp:242
int32_t unknown_line_attribute
Definition: Line.hpp:236
int32_t npoints
Definition: Line.hpp:247
int32_t color
Definition: Line.hpp:231
Colors
Definition: Line.hpp:168
int32_t brush_type
Definition: Line.hpp:225
std::list< Point > points
Definition: Line.hpp:252
constexpr float mid
Definition: Line.hpp:204
constexpr float large
Definition: Line.hpp:209
constexpr float small
Definition: Line.hpp:199
Brushes
Definition: Line.hpp:56