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
Cube/Cube.h
- Committer:
- el17cd
- Date:
- 2019-02-22
- Revision:
- 4:759a5c34e239
- Child:
- 5:54d3b36fec2c
File content as of revision 4:759a5c34e239:
#include "mbed.h" #ifndef FACE_H #define FACE_H #include "Face.h" #endif class Cube { private: float verticies[8][3]; Face faces[6]; public: Cube(float x, float y, float z, float size); Face getFace(int index); };