]> git.treefish.org Git - seamulator.git/blob - surfacepoint.cpp
Basically it's working
[seamulator.git] / surfacepoint.cpp
1 #include "surfacepoint.h"
2
3 double SurfacePoint::getHeight() const
4 {
5   return m_height;
6 }
7
8 void SurfacePoint::setHeight(double height)
9 {
10   m_height = height;
11 }