floatToMatrix static method

MathMatrix floatToMatrix(
  1. double x
)

Implementation

static MathMatrix floatToMatrix( double x ){
	MathMatrix a = MathMatrix();
	a._mat[0].setFloat( x );
	return a;
}