diff options
Diffstat (limited to 'posts')
-rw-r--r-- | posts/SDL2_devlog.md | 15 |
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 | |||
5 | order, begin from the bottom, if this is your first time on | 5 | order, begin from the bottom, if this is your first time on |
6 | this page. | 6 | this page. |
7 | 7 | ||
8 | ### Day 19 | ||
9 | |||
10 | Attempted [some isometric | ||
11 | art](https://peppe.rs/art/conduit.png) within the editor. | ||
12 | The angles displayed alongside the line brush are handly, | ||
13 | however, having only a rectangular grid did not help. I | ||
14 | implemented an isometric grid today. Isometric grids in | ||
15 | pixel art differ in that the tangent of the isometric angle | ||
16 | is exactly 0.5! For every pixel down, you go exactly two | ||
17 | pixels sideways. The math works out really well in the | ||
18 | drawing procedures too, dealing with floating points is a | ||
19 | pain. | ||
20 | |||
21 | ![Day 19](https://u.peppe.rs/1Kb.png) | ||
22 | |||
8 | ### Day 18 | 23 | ### Day 18 |
9 | 24 | ||
10 | I added basic support for guides, they can be added and | 25 | I added basic support for guides, they can be added and |