You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __EXTRS_IMPLICIT |
|
#define __EXTRS_IMPLICIT |
|
|
|
#include <vcg/space/point3.h> |
|
|
|
class Implicit |
|
{ |
|
public: |
|
Implicit() {}; |
|
|
|
virtual ~Implicit() {}; |
|
|
|
virtual float V(int x, int y, int z) const = 0; |
|
|
|
virtual vcg::Point3f N(float x, float y, float z) const = 0; |
|
}; |
|
|
|
#endif // __EXTRS_IMPLICIT
|