ELEC2645 (2018/19) / Mbed 2 deprecated el17cd

Dependencies:   mbed

Revision:
17:3c9672c6e532
Parent:
13:f4de03202477
Child:
24:4e8bdcb74266
--- a/Face/Face.h	Sun Mar 31 18:05:01 2019 +0000
+++ b/Face/Face.h	Sun Mar 31 18:10:18 2019 +0000
@@ -2,14 +2,14 @@
 
 class Face {
   private:
-    double verticies[4][3]; 
-    double avgZ;
+    float verticies[4][3]; 
+    float avgZ;
     bool visible;
   public:
-    Face(); //double (&PointArray)[4][3]
-    double getVertexValue(int vertex, int axis);
+    Face(); //float (&PointArray)[4][3]
+    float getVertexValue(int vertex, int axis);
     bool getVisible();
     void setVisible(bool v); 
-    void setVerticies(double (&PointArray)[4][3]);
-    double getAvgZ();
+    void setVerticies(float (&PointArray)[4][3]);
+    float getAvgZ();
 };
\ No newline at end of file