LVectorObject::SetTranslation
#include "ltwrappr.h"
virtual L_INT LVectorObject::SetTranslation(pTranslation)
const pVECTORPOINT pTranslation; |
/* pointer to a vector point */ |
Translates the class object. This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.
Parameter |
Description |
pTranslation |
Pointer to a VECTORPOINT structure that contains the translation values for each axis. The translation values are in logical units. |
Returns
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
LVKRN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
Functions: |
LVectorBase::GetTranslation, LVectorObject::SetScale, LVectorObject::SetRotation |
Topics: |
|
|
Example
// This example will translate a vector object under pPoint.
L_VOID Example101(HWND hWnd, LVectorBase *pVector, LPPOINT pPoint)
{
LVectorObject VectorObject;
L_INT nRet = pVector->HitTest(pPoint, &VectorObject);
if (nRet==SUCCESS)
{
VECTORPOINT pointTranslate;
pointTranslate.x = +1;
pointTranslate.y = 0;
pointTranslate.z = 0;
VectorObject.SetTranslation(&pointTranslate);
}
}