Rect represents a closed latitude-longitude rectangle.
| 26 | |
| 27 | // Rect represents a closed latitude-longitude rectangle. |
| 28 | type Rect struct { |
| 29 | Lat r1.Interval |
| 30 | Lng s1.Interval |
| 31 | } |
| 32 | |
| 33 | var ( |
| 34 | // TODO(rsned): Make these public to match FullLat/FullLng from C++ |
nothing calls this directly
no outgoing calls
no test coverage detected