Navigine iOS/Android/Flutter SDK
1.0.0
Objective-C/Java/Dart SDK API
Loading...
Searching...
No Matches
Point.java
Go to the documentation of this file.
1
package
com.navigine.idl.java;
2
22
public
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
}
java
com
navigine
idl
java
Point.java
Generated on Mon Dec 8 2025 13:17:53 for Navigine iOS/Android/Flutter SDK by
Doxygen
1.13.2