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
Face/Face.h
- Committer:
- el17cd
- Date:
- 2019-03-19
- Revision:
- 9:5915fc800824
- Parent:
- 7:15543cb10a14
- Child:
- 13:f4de03202477
File content as of revision 9:5915fc800824:
#include "mbed.h" class Face { private: double verticies[4][3]; double avgZ; public: Face(); //double (&PointArray)[4][3] double getVertexValue(int vertex, int axis); void setVerticies(double (&PointArray)[4][3]); double getAvgZ(); };