Show contents 

Working with Graphic Elements > Classes > Matrix4 > Matrix4.Data

Matrix4.Data

Syntax

Data: Array;

Description

The Data property contains matrix values.

Comments

It contains an array of 16 elements of the float32 type.

Use JSON or the setData method to set the property value and the getData method to get the property value.

Example

To execute this example, in the HEAD tag of HTML page specify links to the following JS and CSS files: PP.js, PP.GraphicBase.js. Create a new matrix:

// Create a matrix
matrix = new PP.Matrix4([
4.717621803283691, 0, 0, 0, 
0, 10.385396957397461, 0, 0,
0, 0, -1.0000020265579224, -1, 
0, 0, -0.002000001957640052, 0
]);
// Get matrix values
matrix.getData();
// -> [4.717621803283691, 0, 0, 0, 0, 10.385396957397461, 0, 0, 0, 0, -1.0000020265579224, -1, 0, 0, -0.002000001957640052, 0]

After executing the example a 4x4 matrix is created.

See also:

Matrix4