summaryrefslogtreecommitdiffstats
path: root/House.cpp
diff options
context:
space:
mode:
authorConstantin Riß <constantin.riss@dre.de>2010-01-19 00:33:46 +0100
committerConstantin Riß <constantin.riss@dre.de>2010-01-19 00:33:46 +0100
commit4de0fc7184f74700b68f92ce2acbd54b39b4fedf (patch)
tree354e7cd36a3226f728a280e48deab49263f1f4d8 /House.cpp
parent0c90985b20e3d39d6d761614f4c73e0eefc54170 (diff)
downloadc3d-4de0fc7184f74700b68f92ce2acbd54b39b4fedf.tar
c3d-4de0fc7184f74700b68f92ce2acbd54b39b4fedf.zip
Mit Sun.h erweitert.
Diffstat (limited to 'House.cpp')
-rw-r--r--House.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/House.cpp b/House.cpp
index d6d28c9..4b2d83c 100644
--- a/House.cpp
+++ b/House.cpp
@@ -1,7 +1,8 @@
#include "House.h"
-House::House (float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0):
- collectortemp(collectortemp0) {
+House::House (float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0,
+ float latitude0):
+ collectortemp(collectortemp0), latitude(latitude0) {
Temparray temp0(inittemp0, earthx0, earthy0, earthz0);
temp = temp0;
}