#include <itkFEMLoadImplementationGenericBodyLoad.h>
[NOHEADER] | |
template<class TElementClassConstPointer> void | HandleLoad (TElementClassConstPointer e, Element::LoadPointer l, Element::VectorType &Fe) |
The only accessable part of this class is a static function HandleLoad. This is the function that should be passed to the VisitorDispatcher when registering a load with the element class. The function is templated over the a pointer to an element class, and can therefore be registered with any element class.
Function HandleLoad is declared within a class only to avoid problems with MS compiler. The real gravity load implementation is in static member function Implementation, which is automatically called within HandleLoad function.
Definition at line 47 of file itkFEMLoadImplementationGenericBodyLoad.h.
|
Template parameter should be a const pointer type pointing to a class that is derived from the Element base class. The template parameter is normally automatically determined. FIXME: Add concept checking. Definition at line 59 of file itkFEMLoadImplementationGenericBodyLoad.h. References itk::fem::LoadGrav::Pointer. |