Calculates the normal to 3 points.
Namespace: Ico.Windows.Media.Media3DAssembly: Ico3DControlsLibrary (in Ico3DControlsLibrary.dll) Version: 10.97.212.0 (10.97.212.00)
Syntax
C# |
---|
public static Vector3D CalculateNormal(
Point3D p1,
Point3D p2,
Point3D p3
) |
Visual Basic |
---|
Public Shared Function CalculateNormal ( _
p1 As Point3D, _
p2 As Point3D, _
p3 As Point3D _
) As Vector3D |
JScript |
---|
public static function CalculateNormal(
p1 : Point3D,
p2 : Point3D,
p3 : Point3D
) : Vector3D |
Parameters
- p1
- Type: System.Windows.Media.Media3D..::..Point3D
The first point.
- p2
- Type: System.Windows.Media.Media3D..::..Point3D
The second point.
- p3
- Type: System.Windows.Media.Media3D..::..Point3D
The third point.
Return Value
The vector representing the normal.
See Also