Category Creo Parametric TOOLKIT fundamentals, Object ProTransform

Function ProVectorTrfEval


Description
Transforms the in_vector to the out_vector by the specified transformation matrix (rotation only).
Synopsis
#include <ProAsmcomppath.h>
ProErrorProVectorTrfEval(
ProVector in_vector
/* (In)
The vector to transform.
*/
ProMatrix trf
/* (In)
The transformation matrix.
*/
ProVector out_vector
/* (Out)
The result. This can be the same as in_vector.
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully transformed the in_vector.
PRO_TK_BAD_INPUTSOne or more of the input arguments are invalid (NULL).

Manual References:

  1. Assembly: Basic Assembly Access: Locations of Assembly Components
  2. Core: Coordinate Systems and Transformations: Coordinate System Transformations

Sample Code References:

  1. pt_examples ( TestAnalysisSrfCurve.c )
  2. pt_examples ( TestAnalysisSrfCurve.c )
  3. pt_examples ( TestAnalysisSrfCurve.c )
  4. pt_examples ( TestRay.c )
  5. pt_examples ( TestRule.c )
  6. pt_examples ( UtilMatrix.c )