CurveExtensionIsPointOnCurve Method (Curve, Point3d) |
Calls curve.IsPointOnCurve(Point3d point, Tolerance tolerance) with tolerance set to Global.
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
)
<ExtensionAttribute>
Public Shared Function IsPointOnCurve (
curve As Curve,
point As Point3d
) As Boolean
public:
[ExtensionAttribute]
static bool IsPointOnCurve(
Curve^ curve,
Point3d point
)
[<ExtensionAttribute>]
static member IsPointOnCurve :
curve : Curve *
point : Point3d -> bool
Parameters
- curve
- Type: Curve
The instance of Curve to which this method applies. - point
- Type: Point3d
Point to check against.
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