Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Plane Class / Intersection Method / Intersection(Plane,Plane,Segment3D) Method
The first plane
The second plane
The intersection segment (when it exists)

In This Topic
    Intersection(Plane,Plane,Segment3D) Method
    In This Topic
    Computes the intersection of two planes.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Intersection( _
       ByVal pln1 As Plane, _
       ByVal pln2 As Plane, _
       ByRef intSeg As Segment3D _
    ) As planeIntersectionType
    public static planeIntersectionType Intersection( 
       Plane pln1,
       Plane pln2,
       out Segment3D intSeg
    )

    Parameters

    pln1
    The first plane
    pln2
    The second plane
    intSeg
    The intersection segment (when it exists)

    Return Value

    The intersection type.
    See Also