Package engine.base

Examples of engine.base.Matrix3x3


    setBorder(BorderFactory.createTitledBorder("Coordinate Transformation"));
   
    int x = 8;
    int y = 8+20;
   
    Matrix3x3 m = mat.getMatrix();
    for (int i = 0; i < 9; i++) {
      fields[i] = new JTextField(""+m.get(i));
      fields[i].setBounds(x, y, 40, h);
      add(fields[i]);
      fields[i].getDocument().addDocumentListener(this);
      if ((i%3)==2) {x = 8; y += h;}
      else x += 42;
View Full Code Here

TOP

Related Classes of engine.base.Matrix3x3

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.