Click or drag to resize

Point3dExtensionIsBetween Method (Point3d, Point3d, Point3d, Tolerance)

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

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

Parameters

pt
Type: Point3d
The instance to which this method applies.
p1
Type: Point3d
The start point of the segment.
p2
Type: Point3d
The end point of the segment.
tol
Type: Tolerance
The tolerance used for comparisons.

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 Point3d. 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