ELEC2645 (2018/19) / Mbed 2 deprecated el17cd

Dependencies:   mbed

Committer:
el17cd
Date:
Fri Apr 05 15:43:27 2019 +0000
Revision:
32:9c250eda7f3f
Parent:
24:4e8bdcb74266
Removed unnecessary includes in .h files

Who changed what in which revision?

UserRevisionLine numberNew contents of line
el17cd 4:759a5c34e239 1 #ifndef FACE_H
el17cd 4:759a5c34e239 2 #define FACE_H
el17cd 1:044238f7bdda 3 #include "Face.h"
el17cd 4:759a5c34e239 4 #endif
el17cd 1:044238f7bdda 5
el17cd 24:4e8bdcb74266 6 Face::Face() {
el17cd 24:4e8bdcb74266 7 visible = false; //Each instantiated face is not visible by default
el17cd 13:f4de03202477 8 }
el17cd 13:f4de03202477 9
el17cd 24:4e8bdcb74266 10 bool Face::getVisible() { //Accessor returns whether the face is visible
el17cd 13:f4de03202477 11 return visible;
el17cd 4:759a5c34e239 12 }
el17cd 13:f4de03202477 13
el17cd 13:f4de03202477 14
el17cd 24:4e8bdcb74266 15 void Face::setVisible(bool v) { //Mutator sets whether the face is visible or not
el17cd 13:f4de03202477 16 visible = v;
el17cd 13:f4de03202477 17 }
el17cd 13:f4de03202477 18
el17cd 24:4e8bdcb74266 19 void Face::setVerticies(float (&PointArray)[4][3]) { //Sets the verticies of the face to their xyz coordinate
el17cd 17:3c9672c6e532 20 float z = 0;
el17cd 24:4e8bdcb74266 21 for(int vertex = 0; vertex < 4; vertex++) {
el17cd 24:4e8bdcb74266 22 for(int axis = 0; axis < 3; axis++) {
el17cd 24:4e8bdcb74266 23 verticies[vertex][axis] = PointArray[vertex][axis]; //copies the parameter to the private array
el17cd 1:044238f7bdda 24 }
el17cd 10:07a23afd5088 25 z += verticies[vertex][2];
el17cd 1:044238f7bdda 26 }
el17cd 24:4e8bdcb74266 27 avgZ = z/4; //store an average z axis value for each face
el17cd 1:044238f7bdda 28 }
el17cd 4:759a5c34e239 29
el17cd 24:4e8bdcb74266 30 float Face::getVertexValue(int vertex, int axis){ //Accessor to return the value of a vertex depending on the index and axis
el17cd 1:044238f7bdda 31 return verticies[vertex][axis];
el17cd 9:5915fc800824 32 }
el17cd 9:5915fc800824 33
el17cd 24:4e8bdcb74266 34 float Face::getAvgZ(){ //Accessor to return the average z value of the face
el17cd 9:5915fc800824 35 return avgZ;
el17cd 1:044238f7bdda 36 }