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