Interface PointPreprocessor
-
- All Known Implementing Classes:
AbstractPointPreprocessor
,Jitter
,PassThrough
public interface PointPreprocessor
Interface 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 XYSequencePoint
preprocess(XYSequencePoint point, AxisPanel axisX, AxisPanel axisY)
Preprocesses the point.void
resetPreprocessor()
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
-
-