serializeVectorArr1D

Converts a one-dimesional array of ref_Vector elements to an array of parameter strings.

Signatures

  •   serializeVectorArr1D( vectorArr )

Example

 console.log( serializeVectorArr1D([[5, 1, 2],[2,3,1]]) );
 

Output

 Array [ "<[5,1,2]>", "<[2,3,1]>" ]
 

Parameters

vectorArr

Array containing elements of type ref_Vector.

Return value

A one-dimensional array with string elements containing the paramate representations of vectorArr elements.