Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot Namespace / Camera Class / ScreenToPlane Method / ScreenToPlane(IList<Point>,PlaneEquation,Int32,Int32[]) Method
2D mouse point list (zero on top)
The plane equation
The height of the viewport layout control
The viewport coordinates

In This Topic
    ScreenToPlane(IList<Point>,PlaneEquation,Int32,Int32[]) Method
    In This Topic
    Maps screen coordinates to world coordinates.
    Syntax
    'Declaration
     
    Public Overloads Function ScreenToPlane( _
       ByVal mousePointList As IList(Of Point), _
       ByVal pe As PlaneEquation, _
       ByVal controlHeight As Integer, _
       ByVal viewFrame() As Integer _
    ) As Point3D()
    public Point3D[] ScreenToPlane( 
       IList<Point> mousePointList,
       PlaneEquation pe,
       int controlHeight,
       int[] viewFrame
    )

    Parameters

    mousePointList
    2D mouse point list (zero on top)
    pe
    The plane equation
    controlHeight
    The height of the viewport layout control
    viewFrame
    The viewport coordinates

    Return Value

    The associated 3D world point list.
    See Also