Calculates area of triangle defined by the given points.

Namespace: Ico.Windows.Media.Media3D
Assembly: Ico3DControlsLibrary (in Ico3DControlsLibrary.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public static double TriangleArea(
	Point3D p1,
	Point3D p2,
	Point3D p3
)
Visual Basic
Public Shared Function TriangleArea ( _
	p1 As Point3D, _
	p2 As Point3D, _
	p3 As Point3D _
) As Double
JScript
public static function TriangleArea(
	p1 : Point3D, 
	p2 : Point3D, 
	p3 : Point3D
) : double

Parameters

p1
Type: System.Windows.Media.Media3D..::..Point3D
p2
Type: System.Windows.Media.Media3D..::..Point3D
p3
Type: System.Windows.Media.Media3D..::..Point3D

Return Value

See Also