GEOS  3.13.0dev
Area.h
1 /**********************************************************************
2  *
3  * GEOS - Geometry Engine Open Source
4  * http://geos.osgeo.org
5  *
6  * Copyright (C) 2018 Paul Ramsey <pramsey@cleverlephant.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  *
15  * Last port: algorithm/Area.java @ 2017-09-04
16  *
17  **********************************************************************/
18 
19 #pragma once
20 
21 #include <geos/export.h>
22 #include <geos/geom/Coordinate.h>
23 #include <geos/geom/CoordinateSequence.h>
24 
25 namespace geos {
26 namespace algorithm { // geos::algorithm
27 
28 
29 class GEOS_DLL Area {
30 public:
31 
38  static double ofRing(const std::vector<geom::Coordinate>& ring);
39 
46  static double ofRing(const geom::CoordinateSequence* ring);
47 
57  static double ofRingSigned(const std::vector<geom::Coordinate>& ring);
58 
68  static double ofRingSigned(const geom::CoordinateSequence* ring);
69 
70 };
71 
72 
73 } // namespace geos::algorithm
74 } // namespace geos
75 
Basic namespace for all GEOS functionalities.
Definition: Angle.h:25