LVectorObject::SetTranslation

Summary

Translates the class object. This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.

Syntax

#include "ltwrappr.h"

L_INT LVectorObject::SetTranslation(pTranslation)

Parameters

const pVECTORPOINT pTranslation

Pointer to a VECTORPOINT structure that contains the translation values for each axis. The translation values are in logical units.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

Translates the class object based on the translation values in pTranslation.

The translation values may be retrieved using LVectorBase::GetTranslation.

Required DLLs and Libraries

See Also

Functions

Topics

Example

This example will translate a vector object under pPoint.

L_INT LVectorObject__SetTranslationExample(HWND hWnd, LVectorBase *pVector, LPPOINT pPoint) 
{ 
   UNREFERENCED_PARAMETER(hWnd); 
 
   L_INT          nRet; 
   LVectorObject  VectorObject; 
 
   nRet = pVector->HitTest(pPoint, &VectorObject); 
   if (nRet==SUCCESS) 
   { 
      VECTORPOINT pointTranslate; 
      pointTranslate.x = +1; 
      pointTranslate.y =  0; 
      pointTranslate.z =  0; 
 
      nRet = VectorObject.SetTranslation(&pointTranslate);  
      if(nRet != SUCCESS) 
         return nRet; 
   } 
   else 
      return nRet; 
 
   return SUCCESS; 
} 

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.