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