Math2DIsPointIntoDistance(PointD2D, Double, IEnumerablePointD2D) Method |
Determines whether or not a given point is into a certain distance of a polyline.
Namespace: Altaxo.GeometryAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static bool IsPointIntoDistance(
PointD2D point,
double distance,
IEnumerable<PointD2D> polyline
)
Parameters
- point PointD2D
- The point.
- distance Double
- The distance.
- polyline IEnumerablePointD2D
- The polyline.
Return Value
Booleantrue if the distance between point and polyline is less than or equal to the specified distance; otherwise,
false.
See Also