summaryrefslogtreecommitdiffstats
path: root/Temparray.h
diff options
context:
space:
mode:
Diffstat (limited to 'Temparray.h')
-rw-r--r--Temparray.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Temparray.h b/Temparray.h
index ba4e8e8..67cb73b 100644
--- a/Temparray.h
+++ b/Temparray.h
@@ -22,12 +22,14 @@ class Temparray
}
std::list<Triangle> getTriangles();
void coloring();
+
+ void setprobetemp(float t){probetemp = t;};
private:
float *temparrayold, *temparraynew;
Cubehole *cubearray;
int sx, sy, sz;
- float averagetemp, earthtemp;
+ float averagetemp, earthtemp, probetemp;
Cubehole& cubehole(int x, int y, int z, int line) {
return cubearray[x*sy*sz*6 + y*sz*6 + z*6 + line];