Skip to content
Snippets Groups Projects
Commit ccf77f87 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Added some comments about the BaseFunction::evaluate method.

[[Imported from SVN: r758]]
parent bf9e1be1
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,9 @@ namespace Dune {
virtual void evaluate ( const Vec<0,deriType> &diffVariable,
const Domain & , Range &) const {}; // = 0 ?
//! diffVariable contain the component of the gradient which is delivered.
//! for example gradient of the basefunction x component ==>
//! diffVariable(0) == 0, y component ==> diffVariable(0) == 1 ...
virtual void evaluate ( const Vec<1,deriType> &diffVariable,
const Domain & , Range &) const {}; // = 0 ?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment