Loading...
Searching...
No Matches
Point.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
14public final class Point {
15
16
17 /*package*/ final float x;
18
19 /*package*/ final float y;
20
24 public Point(
25 float x,
26 float y) {
27 this.x = x;
28 this.y = y;
29 }
30
34 public float getX() {
35 return x;
36 }
37
41 public float getY() {
42 return y;
43 }
44
45 @Override
46 public String toString() {
47 return "Point{" +
48 "x=" + x +
49 "," + "y=" + y +
50 "}";
51 }
52
53}