C3DFile.SetPoints

Previous  Next

 

nStatus = C3DFile.SetPoints( BYVAL nFile      AS INTEGER,

                             BYREF arrPos     AS REAL,

                            [BYREF arrResid   AS REAL=NULL],

                            [BYREF arrCamMask AS INTEGER=NULL]  ) AS INTEGER

 


 

Writes the values of points stored in an array into the C3D file.  The arrays can be specified as arrays or references to arrays.  The residuals and camera mask arrays can be omitted if not needed

 

Example:

 

DIM p3(10,3,3) AS REAL

DIM rr(10,3) AS REAL

DIM mm(10,3) AS INTEGER

 

C3DFile.SetPoints( nFile, p3, rr, mm )