#include <fconst3d.h>
Public Member Functions | |
FConst3D (double value) | |
virtual double | operator() (const VecDouble &p, unsigned int component=0) const |
virtual | ~FConst3D () |
virtual bool | isInDomain (const VecDouble &p, unsigned component=0) const |
Private Attributes | |
double | m_value |
Definition at line 9 of file fconst3d.h.
FConst3D::FConst3D | ( | double | value | ) | [inline] |
Definition at line 16 of file fconst3d.h.
00016 {m_value=value;}
virtual FConst3D::~FConst3D | ( | ) | [inline, virtual] |
Definition at line 18 of file fconst3d.h.
bool FConst3D::isInDomain | ( | const VecDouble & | p, | |
unsigned | component = 0 | |||
) | const [virtual] |
Reimplemented from GeneralFunctionInterface.
Definition at line 15 of file fconst3d.cpp.
double FConst3D::operator() | ( | const VecDouble & | p, | |
unsigned int | component = 0 | |||
) | const [virtual] |
Implements GeneralFunctionInterface.
Definition at line 8 of file fconst3d.cpp.
00009 { 00010 return m_value; 00011 00012 }
double FConst3D::m_value [private] |
Definition at line 12 of file fconst3d.h.