L_VecGetParallelogram

Summary

Gets the parallelogram of a vector handle drawing.

Syntax

#include "ltvkrn.h"

L_LVKRN_API L_INT L_VecGetParallelogram(pVector, pMin, pMax)

Parameters

const pVECTORHANDLE pVector

Pointer to a vector handle.

pVECTORPOINT pMin

Pointer to a VECTORPOINT structure to be updated with the minimum point of the bounding parallelogram of the specified vector handle.

pVECTORPOINT pMax

Pointer to a VECTORPOINT structure to be updated with

the maximum point of the bounding parallelogram of the specified vector handle.

Returns

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

Comments

You can set the parallelogram with L_VecSetParallelogram.

Required DLLs and Libraries

See Also

Functions

Topics

Example

This example will show the parallelogram of the vector drawing inside a message box.

L_INT VecGetParallelogramExample(const pVECTORHANDLE pVector) 
{ 
   L_INT nRet; 
   VECTORPOINT Min, Max; 
   L_TCHAR szBuffer[ 80 ]; 
 
   nRet = L_VecGetParallelogram( pVector, &Min, &Max ); 
   if(nRet != SUCCESS) 
      return nRet; 
 
    
   _stprintf_s( szBuffer,80, TEXT("%f,%f,%f to %f,%f,%f"), Min.x, Min.y, Min.z, Max.x, Max.y, Max.z ); 
   MessageBox( NULL, szBuffer, TEXT("Parallelogram"), MB_OK ); 
 
   return SUCCESS; 
} 

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

LEADTOOLS Vector C API Help

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