Determines whether two triangles are coplanar (true if normals are inverse too)

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

Syntax

C#
public static bool AreCoplanar(
	Point3D p1v1,
	Point3D p1v2,
	Point3D p1v3,
	Point3D p2v1,
	Point3D p2v2,
	Point3D p2v3
)
Visual Basic
Public Shared Function AreCoplanar ( _
	p1v1 As Point3D, _
	p1v2 As Point3D, _
	p1v3 As Point3D, _
	p2v1 As Point3D, _
	p2v2 As Point3D, _
	p2v3 As Point3D _
) As Boolean
JScript
public static function AreCoplanar(
	p1v1 : Point3D, 
	p1v2 : Point3D, 
	p1v3 : Point3D, 
	p2v1 : Point3D, 
	p2v2 : Point3D, 
	p2v3 : Point3D
) : boolean

Parameters

p1v1
Type: System.Windows.Media.Media3D..::..Point3D
Polygon 1, Vertex 1
p1v2
Type: System.Windows.Media.Media3D..::..Point3D
Polygon 1, Vertex 2
p1v3
Type: System.Windows.Media.Media3D..::..Point3D
Polygon 1, Vertex 3
p2v1
Type: System.Windows.Media.Media3D..::..Point3D
Polygon 2, Vertex 1
p2v2
Type: System.Windows.Media.Media3D..::..Point3D
Polygon 2, Vertex 2
p2v3
Type: System.Windows.Media.Media3D..::..Point3D
Polygon 2, Vertex 3

Return Value

True if coplanar

See Also