1
// Gmsh - Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
3
// See the LICENSE.txt file for license information. Please report all
4
// bugs and problems to <gmsh@geuz.org>.
6
#ifndef _GMSH_FUNCTION_H_
7
#define _GMSH_FUNCTION_H_
12
gmshFunction(double val = 0) : _val(val) {}
13
virtual ~gmshFunction(){}
14
virtual double operator () (double x, double y, double z) const { return _val; }