Click or drag to resize

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)
Syntax
public static bool IsPointOnCurve(
	this Curve curve,
	Point3d point,
	Tolerance tolerance
)

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: Boolean
true, 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