public void setElement (MatrixType type, int row, int column, double value)

Sets the specified element of the transformation matrix.

Parameters:
type    type of matrix to work with
row    zero-based row number
column    zero-based column number
value    new value of the specified transformation matrix element

Exceptions:
IndexOutOfBoundsException    if the indices are not within the specified matrix type
IllegalArgumentException    if setting the value would break transform's affinity (for convenience the method allows to set the elements of the last line of a 2D 3x3 matrix to [0, 0, 1] and the elements of the last line of a 3D 4x4 matrix to [0, 0, 0, 1]).
NullPointerException    if the specified type is null

Since:  JavaFX 8.0