Click or drag to resize

Point2dExtensionIsBetween Method (Point2d, Point2d, Point2d)

Gets a value indicating if pt lies on the segment p1p2 using Tolerance.Global.

Namespace:  Gile.AutoCAD.Geometry
Assembly:  GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public static bool IsBetween(
	this Point2d pt,
	Point2d p1,
	Point2d p2
)

Parameters

pt
Type: Point2d
The instance to which this method applies.
p1
Type: Point2d
The start point of the segment.
p2
Type: Point2d
The end point of the segment.

Return Value

Type: Boolean
true, if the point lies on the segment ; false, otherwise.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Point2d. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also