RosettaCodeData/Task/Bitmap-Bresenhams-line-algorithm/Crystal/bitmap-bresenhams-line-algorithm-2.cr

8 lines
111 B
Crystal
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
require "./bresenham"
img = Pixmap.new 10, 5, Color::WHITE
img.line 0, 3, 9, 0, Color::RED
img.write STDOUT