Skip to content
Snippets Groups Projects
Commit b0b90d2d authored by Grégoire Mercier's avatar Grégoire Mercier
Browse files

ENH add Set/Get to the functor

parent dea96df7
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,11 @@ namespace Functor { ...@@ -46,6 +46,11 @@ namespace Functor {
m_Lowerthreshold = value; m_Lowerthreshold = value;
} }
TInput GetLowerThreshold() const
{
return m_Lowerthreshold;
}
bool IsToGenerate ( const TInput & x1, const TInput & x2 ) const bool IsToGenerate ( const TInput & x1, const TInput & x2 ) const
{ {
if ( vcl_abs(x1) <= m_Lowerthreshold ) if ( vcl_abs(x1) <= m_Lowerthreshold )
......
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