GEOS 3.9.1
EnvelopeUtil.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2019 Paul Ramsey <pramsey@cleverelephant.ca>
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Public Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 **********************************************************************/
14#ifndef GEOS_INDEX_STRTREE_ENVELOPEUTIL_H
15#define GEOS_INDEX_STRTREE_ENVELOPEUTIL_H
16
17#include <geos/geom/Envelope.h>
18
19namespace geos {
20namespace index { // geos::index
21namespace strtree { // geos::index::strtree
22
23class GEOS_DLL EnvelopeUtil {
24public:
25 // EnvelopeUtil(const void* newBounds, void* newItem);
26 // ~EnvelopeUtil() override = default;
27
28 static double maximumDistance(const geom::Envelope* env1, const geom::Envelope* env2);
29
30};
31
32} // namespace geos::index::strtree
33} // namespace geos::index
34} // namespace geos
35
36#endif // GEOS_INDEX_STRTREE_ENVELOPEUTIL_H
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:26