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 Point bottomLeft;
27
28 /*package*/ final Point topRight;
29
34 Point bottomLeft,
35 Point topRight) {
36 this.bottomLeft = bottomLeft;
37 this.topRight = topRight;
38 }
39
54 return bottomLeft;
55 }
56
70 public Point getTopRight() {
71 return topRight;
72 }
73
74 @Override
75 public String toString() {
76 return "BoundingBox{" +
77 "bottomLeft=" + bottomLeft +
78 "," + "topRight=" + topRight +
79 "}";
80 }
81
82}