Убраны лишние комментарии

This commit is contained in:
2026-02-25 22:46:45 +03:00
parent 317ebb958b
commit 65ca468bfb
19 changed files with 41 additions and 52 deletions

View File

@@ -9,7 +9,7 @@ const Object = Document.Object;
const default_stroke: Color.PMA = .{ .r = 0, .g = 0, .b = 0, .a = 255 };
const default_thickness: f32 = 2.0;
/// Рисует ломаную по точкам в локальных координатах. Обводка по stroke_rgba.
/// Ломаная по точкам, обводка stroke_rgba.
pub fn draw(ctx: *DrawContext, obj: *const Object) void {
const p_prop = obj.getProperty(.points) orelse return;
const pts = p_prop.points.items;