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@4:759a5c34e239, 2019-02-22 (annotated)
- Committer:
- el17cd
- Date:
- Fri Feb 22 19:05:28 2019 +0000
- Revision:
- 4:759a5c34e239
- Parent:
- 2:a5bc7b3779f7
- Child:
- 7:15543cb10a14
Cube Class implemented, when instantiated it created 12 vertices and 6 faces
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
el17cd | 2:a5bc7b3779f7 | 1 | #include "mbed.h" |
el17cd | 2:a5bc7b3779f7 | 2 | |
el17cd | 1:044238f7bdda | 3 | class Face { |
el17cd | 1:044238f7bdda | 4 | private: |
el17cd | 1:044238f7bdda | 5 | float verticies[4][3]; |
el17cd | 1:044238f7bdda | 6 | public: |
el17cd | 4:759a5c34e239 | 7 | Face(); //float (&PointArray)[4][3] |
el17cd | 4:759a5c34e239 | 8 | float getVertexValue(int vertex, int axis); |
el17cd | 4:759a5c34e239 | 9 | void setVerticies(float (&PointArray)[4][3]); |
el17cd | 2:a5bc7b3779f7 | 10 | }; |