diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-05-15 22:04:20 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-05-15 22:04:20 -0700 |
commit | 58ce23d843bf6de713bd9db0806b55b1efe212e5 (patch) | |
tree | 888507008382851445ac7be2d1250ee65e1a1c0b | |
parent | 935f2a62158bf5d1628600f90450ceb901aed3ba (diff) | |
download | lines.love-58ce23d843bf6de713bd9db0806b55b1efe212e5.tar.gz |
fix a comment
-rw-r--r-- | main.lua | 5 |
1 files 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. |