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