mpri-graphics-project/FlatGround.hpp

9 lines
188 B
C++
Raw Permalink Normal View History

2018-02-13 17:03:11 +01:00
#pragma once
#include "Ground.hpp"
class FlatGround : public Ground {
2018-02-13 18:06:01 +01:00
public:
double operator() (double, double) const;
Point get_normal(double x, double y) const;
2018-02-13 17:03:11 +01:00
};