MathHelperPolygonArea Method
|
Returns the area value of a polygon.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static double PolygonArea(
List<Vector2> Vertexes
)
Public Shared Function PolygonArea (
Vertexes As List(Of Vector2)
) As Double
public:
static double PolygonArea(
List<Vector2>^ Vertexes
)
static member PolygonArea :
Vertexes : List<Vector2> -> float
STATIC METHOD PolygonArea(
Vertexes AS List<Vector2>
) AS REAL8
Parameters
- Vertexes
- Type: System.Collections.GenericListVector2
The vertexes of the polygon.
Return Value
Type:
DoubleThe area in drawing units.
See Also