Plane.Intersection (Plane, Plane, Double, out Point3D, out Vector3D) Method

Computes the intersection of two planes.
Public Shared Function Intersection( _ 
ByVal pln1 As Plane, _ 
ByVal pln2 As Plane, _ 
ByVal tol As Double, _ 
ByRef pt As Point3D, _ 
ByRef u As Vector3D
) As planeIntersectionType
This language is not supported or no code example is available.
public static planeIntersectionType Intersection( 
Plane pln1
Plane pln2
double tol
out Point3D pt
out Vector3D u 
)
This language is not supported or no code example is available.

Parameters

pln1
Plane

The first plane

pln2
Plane

The second plane

tol
double

Tolerance used to decide if parallel planes are coincident or disjoint

pt
Point3D

The intersection point (when it exists)

u
Vector3D

The intersection direction

Return Value

planeIntersectionType

The intersection type.

.NET Framework

Supported in: 4.8

In this article

Definition