aboutsummaryrefslogtreecommitdiff
path: root/posts/SDL2_devlog.md
diff options
context:
space:
mode:
Diffstat (limited to 'posts/SDL2_devlog.md')
-rw-r--r--posts/SDL2_devlog.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/posts/SDL2_devlog.md b/posts/SDL2_devlog.md
index 04ac928..569fdba 100644
--- a/posts/SDL2_devlog.md
+++ b/posts/SDL2_devlog.md
@@ -5,6 +5,21 @@ 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 19
9
10Attempted [some isometric
11art](https://peppe.rs/art/conduit.png) within the editor.
12The angles displayed alongside the line brush are handly,
13however, having only a rectangular grid did not help. I
14implemented an isometric grid today. Isometric grids in
15pixel art differ in that the tangent of the isometric angle
16is exactly 0.5! For every pixel down, you go exactly two
17pixels sideways. The math works out really well in the
18drawing procedures too, dealing with floating points is a
19pain.
20
21![Day 19](https://u.peppe.rs/1Kb.png)
22
8### Day 18 23### Day 18
9 24
10I added basic support for guides, they can be added and 25I added basic support for guides, they can be added and