aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/notes/drawing-pixels-in-plan9.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/content/notes/drawing-pixels-in-plan9.md b/content/notes/drawing-pixels-in-plan9.md
index 43e890b..1df63ae 100644
--- a/content/notes/drawing-pixels-in-plan9.md
+++ b/content/notes/drawing-pixels-in-plan9.md
@@ -10,6 +10,15 @@ tags: [plan9, graphics]
10I have started exploring Plan9's graphics capabilities. This is a hello world 10I have started exploring Plan9's graphics capabilities. This is a hello world
11alternative for drawing that draws a yellow square on a red background. 11alternative for drawing that draws a yellow square on a red background.
12 12
13More information:
14
15- [draw.h header file](https://github.com/0intro/plan9/blob/main/sys/include/draw.h)
16 contains all the drawing functions
17- [draw man page](https://9fans.github.io/plan9port/man/man3/graphics.html)
18 has a bit more digestable descriptions of the functions
19- [all man pages](https://9fans.github.io/plan9port/man/man3/)
20 can be a valuable resource for learning about the system
21
13![Plan9 Howdy World!](/notes/plan9-pixels.png) 22![Plan9 Howdy World!](/notes/plan9-pixels.png)
14 23
15```c 24```c