Added TODOs

This commit is contained in:
Paul Schaller 2023-11-23 16:33:36 +01:00
parent 44f6a87ebf
commit fe3ecd84a0
2 changed files with 2 additions and 2 deletions

View File

@ -40,6 +40,6 @@ public class FourSidedScanner extends SingleColorScanner {
leftSideScanner.scan();
leftSideScanner.normalizePoints();
Point2D[] rightSidePoints = leftSideScanner.getPoints();
return null;
return null; //TODO
}
}

View File

@ -28,6 +28,6 @@ public class TwoSidedScanner extends SingleColorScanner {
rightSideScanner.scan();
rightSideScanner.normalizePoints();
Point2D[] rightSidePoints = rightSideScanner.getPoints();
return null;
return null;//TODO
}
}