ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorView Class / SetLookPoint Method
The point in 3D space that the view's camera is looking at.




In This Topic
    SetLookPoint Method
    In This Topic
    Sets the point in 3D space that the view's camera is looking at.
    Syntax
    'Declaration
     
    Public Sub SetLookPoint( _
       ByVal value As ImGearVectorPoint3D _
    ) 
    'Usage
     
    Dim instance As ImGearVectorView
    Dim value As ImGearVectorPoint3D
     
    instance.SetLookPoint(value)
    public void SetLookPoint( 
       ImGearVectorPoint3D value
    )
    public: void SetLookPoint( 
       ImGearVectorPoint3D value
    ) 
    public:
    void SetLookPoint( 
       ImGearVectorPoint3D value
    ) 

    Parameters

    value
    The point in 3D space that the view's camera is looking at.
    Remarks
    By setting a look point with this method, and using the Move method to position the camera, the position and orientation of the camera can easily be defined. Also, Rotate method can optionally take into account the look point.
    See Also