LContainer::SetScalar

#include "Ltwrappr.h"

L_INT LContainer::SetScalar (pvptScalarNum, pvptScalarDen)

Sets the container scaling values that will be used to adjust the coordinates values.

Parameters

pVECTORPOINT pvptScalarNum

Pointer to structure of type VECTORPOINT that contains the numerator to scale the coordinates in the X,Y and Z directions.

pVECTORPOINT pvptScalarDen

Pointer to structure of type VECTORPOINT that contains the denominator to scale the coordinates in the X,Y and Z directions.

Returns

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

Comments

When assigning an external representation to the container every point (Xa, Ya) in the an external representation is transformed by the container to the point (Xc, Yc) by using the following steps: 1. Add offsets

The default scalar values are:

ScalarNum.x = 1   
ScalarNum.y = 1   
ScalarNum.z = 1   
    
ScalarDen.x = 1   
ScalarDen.y = 1   
ScalarDen.z = 1 

Required DLLs and Libraries

See Also

Functions

Topics

Example

This example shows how to set the container coordinates scaling factors.

L_INT LContainer_SetScalarExample(LContainer & lcont) 
 
{ 
   L_INT nRet; 
 
   nRet = lcont.IsValid (); 
 
   if ( nRet == SUCCESS ) /* check the validity of container handle */ 
 
   { 
 
      VECTORPOINT vptScalarNum, vptScalarDen ; 
 
      /* Set the horizontal scaling factor to 5:1 factor */ 
 
      vptScalarNum.x = 5 ;  
 
      vptScalarDen.x = 1 ;  
 
      /* Set the vertical scaling factor to 5:1 factor */ 
 
      vptScalarNum.y = 5 ; 
 
      vptScalarDen.y = 1 ; 
 
      /* Set the z scaling factor to 1:1 factor */ 
 
      vptScalarNum.z = 1 ; 
 
      vptScalarDen.z = 1 ; 
 
      nRet = lcont.SetScalar (&vptScalarNum, &vptScalarDen ) ; 
      if(nRet != SUCCESS) 
         return nRet; 
 
   } 
 
   else 
 
   { 
 
      return nRet ; 
 
   } 
 
   return SUCCESS ; 
 
} 

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

LEADTOOLS Container and Automation C++ Class Library Help