Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / LinePlaneIntersection Method
First point of the line
Second point of the line
The plane equation
The intersection point (if exists)

In This Topic
    LinePlaneIntersection Method
    In This Topic
    Intersects the infinite line with a plane.
    Syntax
    'Declaration
     
    Public Shared Function LinePlaneIntersection( _
       ByVal p0 As Point3D, _
       ByVal p1 As Point3D, _
       ByVal pe As PlaneEquation, _
       ByRef intPoint As Point3D _
    ) As Boolean
    public static bool LinePlaneIntersection( 
       Point3D p0,
       Point3D p1,
       PlaneEquation pe,
       out Point3D intPoint
    )

    Parameters

    p0
    First point of the line
    p1
    Second point of the line
    pe
    The plane equation
    intPoint
    The intersection point (if exists)

    Return Value

    True if the intersection was found, false otherwise.
    See Also