d3func.h
Go to the documentation of this file.00001 #ifndef D3FUNC_H
00002 #define D3FUNC_H
00003
00004 #include <point.h>
00005
00006 class d3func
00007 {
00008 public:
00009
00010 virtual ~d3func() {}
00011
00012 virtual double const eval(point3<double> const & X) const = 0;
00013 };
00014
00015
00016 #endif
00017
00018