Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

virtual void Impala::Visualization::SimilarityPlotNeedleImage::PlotNeedleChanged ( PlotNeedle src,
double  nX,
void *  userData 
) [inline, virtual]

Reimplemented from Impala::Visualization::Plot::PlotNeedleListener.

Definition at line 232 of file SimilarityPlotNeedleImage.h.

References mCurKeyframe, mNrOfKeys, mStartKey, UpdateImage(), and UpdatePointPlot().

00233     {
00234         if (mCurKeyframe == (int) (mStartKey+nX-1))
00235         {
00236             UpdatePointPlot();
00237             return;
00238         }
00239         mCurKeyframe = mStartKey + nX-1;
00240         if (mCurKeyframe < mStartKey)
00241             mCurKeyframe = mStartKey;
00242         if (mCurKeyframe > mStartKey+mNrOfKeys)
00243             mCurKeyframe = mStartKey+mNrOfKeys;
00244         UpdateImage();
00245     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:47:52 2010 for ImpalaSrc by  doxygen 1.5.1