public class Point { public int x, y; Point(int x, int y){ this.x = x; this.y = y; } Point(int x, int y, int shift){ this.x = x + shift; this.y = y + shift; } Point(){ this.x = 1920; this.y = 0; } }