class Point{ //PROPERTIES float x; float y; //CONSTRUCTOR Point(float x, float y) { this.x=x; this.y=y; } //METHODES float getX() { return this.x; } float getY() { return this.y; } }