package GfxLib;

public class T
{

  public static void main(String args[])
  {
    Matrix3D.init();

    Matrix3D test = new Matrix3D();
    //(test.getElements())[1][0] = 3;
    //(test.getElements())[0][1] = 3;
    test.rotate(1, 1, 1, 1);
    System.out.println(test);
    test.inverse();
    System.out.println(test);
  }

}
