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
14
public
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
}
java
com
navigine
idl
java
Point.java
Generated on Thu May 29 2025 21:18:52 for Navigine iOS/Android/Flutter SDK by
Doxygen
1.13.2