valueToMatrix static method

MathMatrix valueToMatrix(
  1. MathValue x
)

Implementation

static MathMatrix valueToMatrix( MathValue x ){
	MathMatrix a = MathMatrix();
	MathValue.copy( a._mat[0], x );
	return a;
}