ELEC2645 (2018/19) / Mbed 2 deprecated el17cd

Dependencies:   mbed

Committer:
el17cd
Date:
Sun Mar 24 17:53:25 2019 +0000
Revision:
13:f4de03202477
Parent:
9:5915fc800824
Child:
17:3c9672c6e532
Fill algorithm in working condition, massive impact on performance

Who changed what in which revision?

UserRevisionLine numberNew contents of line
el17cd 2:a5bc7b3779f7 1 #include "mbed.h"
el17cd 2:a5bc7b3779f7 2
el17cd 1:044238f7bdda 3 class Face {
el17cd 1:044238f7bdda 4 private:
el17cd 7:15543cb10a14 5 double verticies[4][3];
el17cd 9:5915fc800824 6 double avgZ;
el17cd 13:f4de03202477 7 bool visible;
el17cd 1:044238f7bdda 8 public:
el17cd 7:15543cb10a14 9 Face(); //double (&PointArray)[4][3]
el17cd 7:15543cb10a14 10 double getVertexValue(int vertex, int axis);
el17cd 13:f4de03202477 11 bool getVisible();
el17cd 13:f4de03202477 12 void setVisible(bool v);
el17cd 7:15543cb10a14 13 void setVerticies(double (&PointArray)[4][3]);
el17cd 9:5915fc800824 14 double getAvgZ();
el17cd 2:a5bc7b3779f7 15 };