LVectorBase::SetParallelogram

#include "ltwrappr.h"

virtual L_INT LVectorBase::SetParallelogram(pMin, pMax);

Sets the parallelogram of the class object's associated vector handle drawing.

Parameters

const pVECTORPOINT pMin

Pointer to the minimum parallelogram point. If pMin or pMax is NULL, the toolkit will calculate the values based on the minimum parallelogram needed to hold all the objects inside the vector drawing.

const pVECTORPOINT pMax

Pointer to the maximum parallelogram point. If pMin or pMax is NULL, the toolkit will calculate the values based on the minimum parallelogram needed to hold all the objects inside the vector drawing.

Returns

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

Comments

After adding objects to a vector handle, the logical size of the image might change, this function will calculate new boundaries of the drawing.

Required DLLs and Libraries

See Also

Functions

Topics

Example

This example Gets the vector parallelogram and then changes it.

L_INT LVectorBase__SetParallelogramExample(HWND hWnd, LVectorBase *pVector) 
{ 
   UNREFERENCED_PARAMETER(hWnd); 
 
   L_INT          nRet; 
   VECTORPOINT    pointMin, pointMax; 
   L_TCHAR        szMsg[100]; 
 
   nRet = pVector->GetParallelogram(&pointMin, &pointMax); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   wsprintf(szMsg, TEXT("%lf,%lf,%lf to %lf,%lf,%lf"),  
            pointMin.x,  
            pointMin.y,  
            pointMin.z,  
            pointMax.x,  
            pointMax.y,  
            pointMax.z ); 
 
   MessageBox( NULL, szMsg, TEXT("Old Parallelogram"), MB_OK ); 
 
   pointMax.x /= 2; 
   pointMax.y /= 2; 
   pointMax.z /= 2; 
 
   nRet = pVector->SetParallelogram(&pointMin, &pointMax); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   wsprintf(szMsg, TEXT("%lf,%lf,%lf to %lf,%lf,%lf"),  
            pointMin.x,  
            pointMin.y,  
            pointMin.z,  
            pointMax.x,  
            pointMax.y,  
            pointMax.z ); 
 
   MessageBox( NULL, szMsg, TEXT("New Parallelogram"), MB_OK ); 
 
   return SUCCESS; 
} 

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

LEADTOOLS Vector C++ Class Library Help

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