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)
Syntaxpublic static bool IsBetween(
this Point2d pt,
Point2d p1,
Point2d p2
)
<ExtensionAttribute>
Public Shared Function IsBetween (
pt As Point2d,
p1 As Point2d,
p2 As Point2d
) As Boolean
public:
[ExtensionAttribute]
static bool IsBetween(
Point2d pt,
Point2d p1,
Point2d p2
)
[<ExtensionAttribute>]
static member IsBetween :
pt : Point2d *
p1 : Point2d *
p2 : Point2d -> bool
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:
Booleantrue, 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