ELEC2645 (2018/19) / Mbed 2 deprecated el17cd

Dependencies:   mbed

Committer:
el17cd
Date:
Fri Feb 22 12:57:19 2019 +0000
Revision:
1:044238f7bdda
Child:
2:a5bc7b3779f7
Face class implemented, creating rasturizator class

Who changed what in which revision?

UserRevisionLine numberNew contents of line
el17cd 1:044238f7bdda 1 class Face {
el17cd 1:044238f7bdda 2 private:
el17cd 1:044238f7bdda 3 float verticies[4][3];
el17cd 1:044238f7bdda 4 public:
el17cd 1:044238f7bdda 5 Face(float (&PointArray)[4][3]);
el17cd 1:044238f7bdda 6 float GetVertexValue(int vertex, int axis);
el17cd 1:044238f7bdda 7 };
el17cd 1:044238f7bdda 8