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.cpp@10:07a23afd5088, 2019-03-19 (annotated)
- Committer:
- el17cd
- Date:
- Tue Mar 19 12:12:52 2019 +0000
- Revision:
- 10:07a23afd5088
- Parent:
- 9:5915fc800824
- Child:
- 13:f4de03202477
painters algorithm working (without rotation) implemented concept cube runner
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| el17cd | 1:044238f7bdda | 1 | #include "mbed.h" |
| el17cd | 4:759a5c34e239 | 2 | #ifndef FACE_H |
| el17cd | 4:759a5c34e239 | 3 | #define FACE_H |
| el17cd | 1:044238f7bdda | 4 | #include "Face.h" |
| el17cd | 4:759a5c34e239 | 5 | #endif |
| el17cd | 1:044238f7bdda | 6 | |
| el17cd | 7:15543cb10a14 | 7 | Face::Face(){//double (&PointArray)[4][3]){ |
| el17cd | 4:759a5c34e239 | 8 | /* |
| el17cd | 4:759a5c34e239 | 9 | for(int vertex = 0; vertex < 4; vertex++){ |
| el17cd | 4:759a5c34e239 | 10 | for(int axis = 0; axis < 3; axis++){ |
| el17cd | 4:759a5c34e239 | 11 | verticies[vertex][axis] = PointArray[vertex][axis]; |
| el17cd | 4:759a5c34e239 | 12 | } |
| el17cd | 4:759a5c34e239 | 13 | }*/ |
| el17cd | 4:759a5c34e239 | 14 | } |
| el17cd | 7:15543cb10a14 | 15 | void Face::setVerticies(double (&PointArray)[4][3]){ |
| el17cd | 10:07a23afd5088 | 16 | double z = 0; |
| el17cd | 1:044238f7bdda | 17 | for(int vertex = 0; vertex < 4; vertex++){ |
| el17cd | 1:044238f7bdda | 18 | for(int axis = 0; axis < 3; axis++){ |
| el17cd | 1:044238f7bdda | 19 | verticies[vertex][axis] = PointArray[vertex][axis]; |
| el17cd | 1:044238f7bdda | 20 | } |
| el17cd | 10:07a23afd5088 | 21 | z += verticies[vertex][2]; |
| el17cd | 1:044238f7bdda | 22 | } |
| el17cd | 9:5915fc800824 | 23 | avgZ = z/4; |
| el17cd | 1:044238f7bdda | 24 | } |
| el17cd | 4:759a5c34e239 | 25 | |
| el17cd | 7:15543cb10a14 | 26 | double Face::getVertexValue(int vertex, int axis){ |
| el17cd | 1:044238f7bdda | 27 | return verticies[vertex][axis]; |
| el17cd | 9:5915fc800824 | 28 | } |
| el17cd | 9:5915fc800824 | 29 | |
| el17cd | 9:5915fc800824 | 30 | double Face::getAvgZ(){ |
| el17cd | 9:5915fc800824 | 31 | return avgZ; |
| el17cd | 1:044238f7bdda | 32 | } |