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