removed recursive call in paint

added scroll panes without relative position
This commit is contained in:
Macocian Adrian Radu
2020-03-31 20:36:08 +03:00
parent 62f3d8d46c
commit eb4ce47a5c
17 changed files with 306 additions and 204 deletions

View File

@@ -12,4 +12,9 @@ public class Point2<T> {
public boolean equals(Point2<T> point2) {
return x == point2.y && y == point2.y;
}
@Override
public String toString() {
return "Point2 x:" + x + " y: " + y;
}
}