SplineExtensionCentroid Method |
Gets the centroid of a closed planar spline.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic static Point3d Centroid(
this Spline spl
)
<ExtensionAttribute>
Public Shared Function Centroid (
spl As Spline
) As Point3d
public:
[ExtensionAttribute]
static Point3d Centroid(
Spline^ spl
)
[<ExtensionAttribute>]
static member Centroid :
spl : Spline -> Point3d
Parameters
- spl
- Type: Spline
The instance to which this method applies.
Return Value
Type:
Point3dThe centroid of the spline (WCS coordinates).
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Spline. 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).
ExceptionsException | Condition |
---|
Exception |
eNonPlanarEntity is thrown if the spline is not planar. |
Exception |
eNotApplicable is thrown if the spline is not closed. |
See Also