Loading...
Searching...
No Matches
Point.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
22public final class Point {
23
24
25 /*package*/ final float x;
26
27 /*package*/ final float y;
28
32 public Point(
33 float x,
34 float y) {
35 this.x = x;
36 this.y = y;
37 }
38
51 public float getX() {
52 return x;
53 }
54
67 public float getY() {
68 return y;
69 }
70
71 @Override
72 public String toString() {
73 return "Point{" +
74 "x=" + x +
75 "," + "y=" + y +
76 "}";
77 }
78
79}