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