| 65 | }; |
| 66 | |
| 67 | class SimpleFunction |
| 68 | { |
| 69 | public: |
| 70 | SimpleFunction(vtkImplicitFunction* function) |
| 71 | : Function(function) |
| 72 | { |
| 73 | } |
| 74 | double operator()(double in[3]) { return this->Function->EvaluateFunction(in); } |
| 75 | |
| 76 | private: |
| 77 | vtkImplicitFunction* Function; |
| 78 | }; |
| 79 | |
| 80 | class TransformFunction |
| 81 | { |