summaryrefslogtreecommitdiffstats
path: root/House.cpp
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.cpp
parent589b97493ab9d9e59e847e667d82694e4fc497e9 (diff)
downloadc3d-0c90985b20e3d39d6d761614f4c73e0eefc54170.tar
c3d-0c90985b20e3d39d6d761614f4c73e0eefc54170.zip
Temparray verfeinert/House.cpp und House.h angefangen.
Diffstat (limited to 'House.cpp')
-rw-r--r--House.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/House.cpp b/House.cpp
new file mode 100644
index 0000000..d6d28c9
--- /dev/null
+++ b/House.cpp
@@ -0,0 +1,7 @@
+#include "House.h"
+
+House::House (float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0):
+ collectortemp(collectortemp0) {
+ Temparray temp0(inittemp0, earthx0, earthy0, earthz0);
+ temp = temp0;
+}