Basic implicit surfaces interface definition

This commit is contained in:
Rémi Oudin 2018-01-25 11:40:39 +01:00
parent 0775926122
commit 5d243e4cde
2 changed files with 4 additions and 0 deletions

0
Implicit.cpp Normal file
View file

4
Implicit.h Normal file
View file

@ -0,0 +1,4 @@
class ImplicitSurface {
public:
virtual double operator() (double x, double y, double z);
}