CurveExtensionIsPointOnCurve Method (Curve, Point3d, Tolerance) |
Checks if point is within the distance Tolerance.EqualPoint from this curve.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic static bool IsPointOnCurve(
this Curve curve,
Point3d point,
Tolerance tolerance
)
<ExtensionAttribute>
Public Shared Function IsPointOnCurve (
curve As Curve,
point As Point3d,
tolerance As Tolerance
) As Boolean
public:
[ExtensionAttribute]
static bool IsPointOnCurve(
Curve^ curve,
Point3d point,
Tolerance tolerance
)
[<ExtensionAttribute>]
static member IsPointOnCurve :
curve : Curve *
point : Point3d *
tolerance : Tolerance -> bool
Parameters
- curve
- Type: Curve
The instance of Curve to which this method applies. - point
- Type: Point3d
Point to check against. - tolerance
- Type: Tolerance
Tolerance value.
Return Value
Type:
Booleantrue, if the condition is met; otherwise, false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Curve. 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