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-02-22
- Revision:
- 4:759a5c34e239
- Parent:
- 2:a5bc7b3779f7
- Child:
- 7:15543cb10a14
File content as of revision 4:759a5c34e239:
#include "mbed.h" class Face { private: float verticies[4][3]; public: Face(); //float (&PointArray)[4][3] float getVertexValue(int vertex, int axis); void setVerticies(float (&PointArray)[4][3]); };