From 3d49c6e9158c3b5542da59226828451eabf3c922 Mon Sep 17 00:00:00 2001 From: Mees Roelofsz Date: Wed, 6 Dec 2023 13:25:27 +0100 Subject: [PATCH] added --- docs/documentatie/presentatie.md | 5 ++++- web/index.html | 1 + web/js/homescreen.js | 23 +++++++++++++++++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 web/js/homescreen.js diff --git a/docs/documentatie/presentatie.md b/docs/documentatie/presentatie.md index 62838ff..b88fb65 100644 --- a/docs/documentatie/presentatie.md +++ b/docs/documentatie/presentatie.md @@ -1 +1,4 @@ -# Presentie \ No newline at end of file +# Presentie + +De presentatie ging goed, we waren wel een aantal dingen vergeten zoals de feedback van mensen over de wireflow opnemen in de presentatie. We moesten ook beter onderzoek doen over de doelgroep en dat meer laten zien in de presentatie. + diff --git a/web/index.html b/web/index.html index c2f686e..438fd4d 100644 --- a/web/index.html +++ b/web/index.html @@ -10,6 +10,7 @@ + diff --git a/web/js/homescreen.js b/web/js/homescreen.js new file mode 100644 index 0000000..39f1137 --- /dev/null +++ b/web/js/homescreen.js @@ -0,0 +1,23 @@ +class Startscreen { + constructor(width, height) { + this.width = width; + this.height = height; + + } + + setup() { + createCanvas(this.width, this.height); + + } + + + draw() { + circle(100, 100, 100) + } + + update() { + + } + + +} \ No newline at end of file