Click or drag to resize
Point2DArea2 Method
Returns twice the signed area of the triangle a-b-c.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static double Area2(
	Point2D a,
	Point2D b,
	Point2D c
)

Parameters

a
Type: Algs4NetPoint2D
first point
b
Type: Algs4NetPoint2D
second point
c
Type: Algs4NetPoint2D
third point

Return Value

Type: Double
twice the signed area of the triangle a-b-c
See Also