aboutsummaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-03-18 14:05:04 +0000
committerAkshay <[email protected]>2021-03-18 14:05:04 +0000
commit439091635880851ad57188fb369e7915a401f6fc (patch)
tree6c45df5f6a43d0f83c626c4291e54a49905e191c /posts
parent04fb237e01d7872487ff347190b05f4321099704 (diff)
add entry for day 11
Diffstat (limited to 'posts')
-rw-r--r--posts/SDL2_devlog.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/posts/SDL2_devlog.md b/posts/SDL2_devlog.md
index 08e0084..d62e376 100644
--- a/posts/SDL2_devlog.md
+++ b/posts/SDL2_devlog.md
@@ -5,6 +5,16 @@ on the editor. The days are listed in reverse chronological
5order, begin from the bottom, if this is your first time on 5order, begin from the bottom, if this is your first time on
6this page. 6this page.
7 7
8### Day 11
9
10I intend to supplement the editor with scripting language
11and an inbuilt REPL for the same. I began by implementing a
12text box widget from scratch, with history and readline like
13editing:
14
15![Day 11](https://u.peppe.rs/Mh.mp4)
16
17
8### Day 10 18### Day 10
9 19
10I started reading up on dithering methods and half-toning, I 20I started reading up on dithering methods and half-toning, I
@@ -111,7 +121,7 @@ come in handy down the line.
111### Day 3 121### Day 3
112 122
113I implemented the bare minimum required to call the program 123I implemented the bare minimum required to call the program
114and "editor". The application displays a grid, tracks mouse 124an "editor". The application displays a grid, tracks mouse
115events, paints white to the canvas on left click, and black 125events, paints white to the canvas on left click, and black
116to the canvas on right click. I created a make-shift MVC 126to the canvas on right click. I created a make-shift MVC
117architecture à la Elm in Rust. 127architecture à la Elm in Rust.