Calculates the center Point3D of the circumference the (v0, v1, v2) triangle is inscribed.
Namespace: Ico.Windows.Media.Media3DAssembly: Ico3DControlsLibrary (in Ico3DControlsLibrary.dll) Version: 10.97.212.0 (10.97.212.00)
Syntax
C# |
---|
public static Point3D GetTriangleCircumcenter(
Point3D v0,
Point3D v1,
Point3D v2,
out double radius
) |
Visual Basic |
---|
Public Shared Function GetTriangleCircumcenter ( _
v0 As Point3D, _
v1 As Point3D, _
v2 As Point3D, _
<OutAttribute> ByRef radius As Double _
) As Point3D |
JScript |
---|
public static function GetTriangleCircumcenter(
v0 : Point3D,
v1 : Point3D,
v2 : Point3D,
radius : double
) : Point3D |
Parameters
- v0
- Type: System.Windows.Media.Media3D..::..Point3D
The first vertex of the triangle.
- v1
- Type: System.Windows.Media.Media3D..::..Point3D
The second vertex of the triangle.
- v2
- Type: System.Windows.Media.Media3D..::..Point3D
The third vertex of the triangle.
- radius
- Type: System..::..Double%
A return parameter giving the dimension of the circumference radius. Can be null.
Return Value
The
Point3D representing the
See Also