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

@@ -4,8 +4,8 @@ public class Debugger {
public enum Tag {
LISTENER(false),
PAINTING(false),
FPS(false),
ANIMATIONS(true),
FPS(true),
ANIMATIONS(false),
PARSING(false);
public boolean value;

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;
}
}

View File

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

View File

@@ -16,4 +16,9 @@ public class Point4<T> {
public boolean equals(Point4<T> point4) {
return a == point4.a && b == point4.b && c == point4.c && d == point4.d;
}
@Override
public String toString() {
return "Point2 a:" + a + " b: " + b + " c: " + c + " d: " + d;
}
}