Gets the origin point for the specified vector handle.
#include "ltvkrn.h"
L_LVKRN_API L_INT L_VecGetOrigin(pVector, pOrigin)
Pointer to a vector handle.
Pointer to a VECTORPOINT structure to be updated with the origin point.
| Value | Meaning |
|---|---|
| SUCCESS | The function was successful. |
| < 1 | An error occurred. Refer to Return Codes. |
The origin of a vector drawing may change whenever new objects are added. To insure that the drawing is centered around its origin, call L_VecSetOrigin(pVector, NULL) after adding objects.
The origin point may be set using L_VecSetOrigin.
This example will show the origin of a vector image in a dialog box.
L_INT VecGetOriginExample(pVECTORHANDLE pVector){L_INT nRet;VECTORPOINT Origin;L_TCHAR szBuffer[ 80 ];nRet = L_VecGetOrigin( pVector, &Origin );if(nRet != SUCCESS)return nRet;_stprintf_s( szBuffer,80, TEXT("%f, %f, %f"), Origin.x, Origin.y, Origin.z );MessageBox( NULL, szBuffer, TEXT("Origin At"), MB_OK );return SUCCESS;}