Represent the OGREnvelope C Structure.
| 20 | # See the 'ogr_core.h' source file for more information: |
| 21 | # https://gdal.org/doxygen/ogr__core_8h_source.html |
| 22 | class OGREnvelope(Structure): |
| 23 | "Represent the OGREnvelope C Structure." |
| 24 | |
| 25 | _fields_ = [ |
| 26 | ("MinX", c_double), |
| 27 | ("MaxX", c_double), |
| 28 | ("MinY", c_double), |
| 29 | ("MaxY", c_double), |
| 30 | ] |
| 31 | |
| 32 | |
| 33 | class Envelope: |
no outgoing calls
no test coverage detected