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@9:5915fc800824, 2019-03-19 (annotated)
- Committer:
- el17cd
- Date:
- Tue Mar 19 10:27:37 2019 +0000
- Revision:
- 9:5915fc800824
- Parent:
- 7:15543cb10a14
- Child:
- 13:f4de03202477
Painters algorithm attempt;
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 | 7:15543cb10a14 | 5 | double verticies[4][3]; |
el17cd | 9:5915fc800824 | 6 | double avgZ; |
el17cd | 1:044238f7bdda | 7 | public: |
el17cd | 7:15543cb10a14 | 8 | Face(); //double (&PointArray)[4][3] |
el17cd | 7:15543cb10a14 | 9 | double getVertexValue(int vertex, int axis); |
el17cd | 7:15543cb10a14 | 10 | void setVerticies(double (&PointArray)[4][3]); |
el17cd | 9:5915fc800824 | 11 | double getAvgZ(); |
el17cd | 2:a5bc7b3779f7 | 12 | }; |