]> git.treefish.org Git - seamulator.git/blob - sea.cpp
Initial commit
[seamulator.git] / sea.cpp
1 #include "sea.h"
2
3 #include <cstdlib>
4
5 Sea::Sea(WaterSurface& surface) : m_surface{surface}
6 {
7 }
8
9 void Sea::update()
10 {
11   for (int y = 0; y < m_surface.size(); ++y) {
12     for (int x = 0; x < m_surface.size(); ++x) {
13       m_surface.at(x, y)
14         .setHeight(((double)std::rand()/(double)RAND_MAX));
15     }
16   }
17 }