summaryrefslogtreecommitdiffstats
path: root/House.h
diff options
context:
space:
mode:
authorConstantin Riß <constantin.riss@dre.de>2010-01-18 23:20:00 +0100
committerConstantin Riß <constantin.riss@dre.de>2010-01-18 23:20:00 +0100
commit0c90985b20e3d39d6d761614f4c73e0eefc54170 (patch)
tree4b179eb83ded4d7bd89c78e125034b025a4d363f /House.h
parent589b97493ab9d9e59e847e667d82694e4fc497e9 (diff)
downloadc3d-0c90985b20e3d39d6d761614f4c73e0eefc54170.tar
c3d-0c90985b20e3d39d6d761614f4c73e0eefc54170.zip
Temparray verfeinert/House.cpp und House.h angefangen.
Diffstat (limited to 'House.h')
-rw-r--r--House.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/House.h b/House.h
new file mode 100644
index 0000000..8a4b325
--- /dev/null
+++ b/House.h
@@ -0,0 +1,23 @@
+#ifndef _HOUSE_H_
+#define _HOUSE_H_
+
+#include "Temparray.h"
+#include "Triangle.h"
+#include <list>
+#include <math.h>
+
+class House
+{
+ public:
+ House(float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0);
+ std::list<Triangle> getTriangles(){
+ std::list<Triangle> triangles = temp.getTriangles();
+ return triangles;
+ }
+
+ private:
+ Temparray temp;
+ float collectortemp;
+};
+
+#endif /* _HOUSE_H_ */