Click or drag to resize

PolygonMathGetClosedPolygonSecondMoments(IEnumerableIntPoint) Method

Calculates the 2nd moments of the given closed polygon. The polygon has to be non-selfintersecting!

Namespace: Altaxo.Geometry.Int64_2D
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static (double Ixx, double Iyy, double Ixy) GetClosedPolygonSecondMoments(
	IEnumerable<IntPoint> closedPolygon
)

Parameters

closedPolygon  IEnumerableIntPoint
The closed polygon.

Return Value

ValueTupleDouble, Double, Double
The second moments, Ixx, Iyy, and Ixy, of the given polygon (with respect to the origin (x=0, y=0)).
See Also