Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: Face/Face.h
- 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