setMatrix method

EasyClip setMatrix(
  1. String chr,
  2. dynamic value
)

Implementation

EasyClip setMatrix( String chr, dynamic value ){
	_setEnv();
	if( value is! MathMatrix ){
		value = MathMatrix.arrayToMatrix( value );
	}
	_param.array().setMatrix( ClipMath.char( chr ), value, false );
	return this;
}