/**
* Test of setMatrix2D method, of class OrthogonalProjection.
*/
public void testSetMatrix2D() {
System.out.println("setMatrix2D");
Matrix4f matrix = Matrix4f.identity();
OrthogonalProjection instance = new OrthogonalProjection(0, 800, 600, 0, 0, 1);
Matrix4f expResult = null;
Matrix4f result = instance.setMatrix2D(matrix);
System.out.println(result);
result.print(4, 4);
}