#include <DummyVertexSmoother.h>
Public Member Functions | |
DummyVertexSmoother * | clone () const |
CachingVertex< N > | smooth (const CachingVertex< N > &) const |
A dummy vertex smoother. Input = Output.
Definition at line 11 of file DummyVertexSmoother.h.
DummyVertexSmoother< N > * DummyVertexSmoother< N >::clone | ( | ) | const [virtual] |
Clone method
Implements VertexSmoother< N >.
Definition at line 10 of file DummyVertexSmoother.cc.
{ return new DummyVertexSmoother ( * this ); }
CachingVertex< N > DummyVertexSmoother< N >::smooth | ( | const CachingVertex< N > & | vertex | ) | const [virtual] |
Smoothing method
Implements VertexSmoother< N >.
Definition at line 4 of file DummyVertexSmoother.cc.
{
return vertex;
}