From 58ce23d843bf6de713bd9db0806b55b1efe212e5 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 15 May 2022 22:04:20 -0700 Subject: [PATCH] fix a comment --- main.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.lua b/main.lua index f60de6b..ef9e059 100644 --- a/main.lua +++ b/main.lua @@ -18,9 +18,8 @@ local utf8 = require 'utf8' -- an array vertices for mode 'polygon', 'rectangle', 'square' -- p1, p2 for mode 'line' -- p1, p2, arrow-mode for mode 'arrow-line' --- cx,cy, r for mode 'circle' --- pc, r for mode 'circle' --- pc, r, s, e for mode 'arc' +-- center, radius for mode 'circle' +-- center, radius, start_angle, end_angle for mode 'arc' -- Unless otherwise specified, coord fields are normalized; a drawing is always 256 units wide -- The field names are carefully chosen so that switching modes in midstream -- remembers previously entered points where that makes sense.