DYT/Tool/OpenSceneGraph-3.6.5/include/geos/algorithm/distance/DistanceToPoint.h

73 lines
2.0 KiB
C
Raw Permalink Normal View History

2024-12-24 23:49:36 +00:00
/**********************************************************************
*
* GEOS - Geometry Engine Open Source
* http://geos.osgeo.org
*
* Copyright (C) 2009 Sandro Santilli <strk@kbt.io>
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Public Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
*
* Last port: algorithm/distance/DistanceToPoint.java 1.1 (JTS-1.9)
*
**********************************************************************/
#pragma once
#include <geos/geom/LineSegment.h> // for composition
namespace geos {
namespace algorithm {
namespace distance {
class PointPairDistance;
}
}
namespace geom {
class Geometry;
class Coordinate;
class LineString;
class Polygon;
}
}
namespace geos {
namespace algorithm { // geos::algorithm
namespace distance { // geos::algorithm::distance
/**
* Computes the Euclidean distance (L2 metric) from a Point to a Geometry.
*
* Also computes two points which are separated by the distance.
*/
class DistanceToPoint {
public:
DistanceToPoint() {}
static void computeDistance(const geom::Geometry& geom,
const geom::CoordinateXY& pt,
PointPairDistance& ptDist);
static void computeDistance(const geom::LineString& geom,
const geom::CoordinateXY& pt,
PointPairDistance& ptDist);
static void computeDistance(const geom::LineSegment& geom,
const geom::CoordinateXY& pt,
PointPairDistance& ptDist);
static void computeDistance(const geom::Polygon& geom,
const geom::CoordinateXY& pt,
PointPairDistance& ptDist);
};
} // geos::algorithm::distance
} // geos::algorithm
} // geos