#include "ltwrappr.h"
L_INT LVectorObject::SetTranslation(pTranslation)
Translates the class object. This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.
Pointer to a VECTORPOINT structure that contains the translation values for each axis. The translation values are in logical units.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Translates the class object based on the translation values in pTranslation.
The translation values may be retrieved using LVectorBase::GetTranslation.
Required DLLs and Libraries
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 Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document