From 3f676cde59a9975999a00d152e964c39b788c221 Mon Sep 17 00:00:00 2001 From: "Ian Evans (ab8809)" Date: Mon, 9 Sep 2019 14:23:03 +0100 Subject: [PATCH] Update README.md --- Week 2/README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/Week 2/README.md b/Week 2/README.md index 7876aa6..429638f 100644 --- a/Week 2/README.md +++ b/Week 2/README.md @@ -429,14 +429,9 @@ Creating neat, readable code is more like an art than programming skill and alth ## Homework -Read into _#pragma once_, why it is needed and what a preprocessor directive is. - -Research the differences between public, private and protected in C++ classes. What is the default setting of a class? - -Why do we use #include " ... " and not #include < ... > for classes we create ourselves? - -When using the GLM library, we have to write glm:: before any vec3. This is called a namespace. What is a namespace and how can it be useful? - -Cubes should be able to be any colour! Create a new variable, constructor and alter the _Draw_ code for Cube to allow this. Use the new constructor on the 3 cubes to give them different colours. - -Download DoxyWizard on your own machines and try to create some documentation on this weeks work. +* Read into _#pragma once_, why it is needed and what a preprocessor directive is. +* Research the differences between public, private and protected in C++ classes. What is the default setting of a class? +* Why do we use #include " ... " and not #include < ... > for classes we create ourselves? +* When using the GLM library, we have to write glm:: before any vec3. This is called a namespace. What is a namespace and how can it be useful? +* Cubes should be able to be any colour! Create a new variable, constructor and alter the _Draw_ code for Cube to allow this. Use the new constructor on the 3 cubes to give them different colours. +* Download DoxyWizard on your own machines and try to create some documentation on this weeks work.