GEOS 3.11.1
Length.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/Length.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
25namespace geos {
26namespace algorithm { // geos::algorithm
27
33class GEOS_DLL Length {
34public:
35
42 static double ofLine(const geom::CoordinateSequence* ring);
43
44};
45
46
47} // namespace geos::algorithm
48} // namespace geos
49
50
Functions for computing length.
Definition: Length.h:33
static double ofLine(const geom::CoordinateSequence *ring)
The internal representation of a list of coordinates inside a Geometry.
Definition: CoordinateSequence.h:44
Basic namespace for all GEOS functionalities.
Definition: geos.h:39