ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorView Class / ToScreen Method
World coordinates to be converted.




In This Topic
    ToScreen Method
    In This Topic
    Converts 3D world coordinates to screen coordinates for the current view.
    Syntax
    'Declaration
     
    Public Function ToScreen( _
       ByVal worldCoordinates() As ImGearVectorPoint3D _
    ) As Point()
    'Usage
     
    Dim instance As ImGearVectorView
    Dim worldCoordinates() As ImGearVectorPoint3D
    Dim value() As Point
     
    value = instance.ToScreen(worldCoordinates)
    public Point[] ToScreen( 
       ImGearVectorPoint3D[] worldCoordinates
    )
    public: Point[]* ToScreen( 
       ImGearVectorPoint3D[]* worldCoordinates
    ) 

    Parameters

    worldCoordinates
    World coordinates to be converted.

    Return Value

    An array of screen coordinates.
    See Also