dot_display
dot_display
A 1-bit display buffer that renders to 2x8 braille dot characters
Installation
-
Add the dependency to your
shard.yml
:dependencies: dot_display: github: sleepinginsomniac/dot_display
-
Run
shards install
Usage
require "dot_display"
dd = DotDisplay.new(16, 16)
dd.height.times do |y|
dd.width.times do |x|
dd[x, y] = true if (y + x) % 2 == 0
end
end
dd.to_s # =>
# ⢕⢕⢕⢕⢕⢕⢕⢕
# ⢕⢕⢕⢕⢕⢕⢕⢕
# ⢕⢕⢕⢕⢕⢕⢕⢕
# ⢕⢕⢕⢕⢕⢕⢕⢕
Contributors
- Alex Clink - creator and maintainer
Repository
dot_display
Owner
Statistic
- 0
- 0
- 0
- 2
- 0
- 7 months ago
- April 3, 2024
License
MIT License
Links
Synced at
Thu, 07 Nov 2024 19:15:59 GMT
Languages