Create a new plane and combine it with the mesh

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

Syntax

C#
public static void AddPlane(
	MeshGeometry3D mesh,
	Vector3D direction,
	Point3D position
)
Visual Basic
Public Shared Sub AddPlane ( _
	mesh As MeshGeometry3D, _
	direction As Vector3D, _
	position As Point3D _
)
JScript
public static function AddPlane(
	mesh : MeshGeometry3D, 
	direction : Vector3D, 
	position : Point3D
)

Parameters

mesh
Type: System.Windows.Media.Media3D..::..MeshGeometry3D
The mesh to combine the plane with
direction
Type: System.Windows.Media.Media3D..::..Vector3D
The direction of the new plane: must be one of the main axis
position
Type: System.Windows.Media.Media3D..::..Point3D
The center of the plane

See Also