mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-19 06:00:04 +00:00
removed recursive call in paint
added scroll panes without relative position
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user