serializeVectorArr2D
Converts a two-dimesional array of ref_Vector elements to a two-dienstional array of parameter strings.
Signatures
- Paramate.Configurator.serializeVectorArr2D( vectorArr )
Example
console.log( Paramate.Configurator.serializeVectorArr2D([
[[0,0,0],[1,0,0]],
[[0,1,0],[1,1,0]],
]) );
Output
Array [
['<[0,0,0]>', '<[1,0,0]>'],
['<[0,1,0]>', '<[1,1,0]>'],
];
Parameters
- vectorArr
-
Two-dimensional array containing elements of type ref_Vector.
Return value
A two-dimensional array with string elements containing the paramate representations of vectorArr elements.