ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntity Class / Move Method
X coordinate of the offset vector.
Y coordinate of the offset vector.
Z coordinate of the offset vector.
Flag that defines an order of transformation.




In This Topic
    Move Method (ImGearVectorEntity)
    In This Topic
    Moves the entity according to the specified vector.
    Syntax
    'Declaration
     
    Public Sub Move( _
       ByVal offsetX As Single, _
       ByVal offsetY As Single, _
       ByVal offsetZ As Single, _
       ByVal transformBeforeMoving As Boolean _
    ) 
    'Usage
     
    Dim instance As ImGearVectorEntity
    Dim offsetX As Single
    Dim offsetY As Single
    Dim offsetZ As Single
    Dim transformBeforeMoving As Boolean
     
    instance.Move(offsetX, offsetY, offsetZ, transformBeforeMoving)
    public void Move( 
       float offsetX,
       float offsetY,
       float offsetZ,
       bool transformBeforeMoving
    )
    public: void Move( 
       float offsetX,
       float offsetY,
       float offsetZ,
       bool transformBeforeMoving
    ) 
    public:
    void Move( 
       float offsetX,
       float offsetY,
       float offsetZ,
       bool transformBeforeMoving
    ) 

    Parameters

    offsetX
    X coordinate of the offset vector.
    offsetY
    Y coordinate of the offset vector.
    offsetZ
    Z coordinate of the offset vector.
    transformBeforeMoving
    Flag that defines an order of transformation.
    Remarks
    If transformBeforeMoving parameter is true then moving is performed before other transformations (that is, the current matrix is multiplied by the move matrix). Otherwise, the move matrix is multiplied by the current matrix.
    See Also