Interface PointPreprocessor
-
- All Known Implementing Classes:
AbstractPointPreprocessor,Jitter,PassThrough
public interface PointPreprocessorInterface for classes that preprocess points.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XYSequencePointpreprocess(XYSequencePoint point, AxisPanel axisX, AxisPanel axisY)Preprocesses the point.voidresetPreprocessor()Resets the processor for another sequence.
-
-
-
Method Detail
-
resetPreprocessor
void resetPreprocessor()
Resets the processor for another sequence.
-
preprocess
XYSequencePoint preprocess(XYSequencePoint point, AxisPanel axisX, AxisPanel axisY)
Preprocesses the point.- Parameters:
point- the point to processaxisX- the X axis to useaxisY- the Y axis to use- Returns:
- the new point
-
-