Examples of FeldTyp


Examples of aufnahme.fmg.edu.kit.aifb.FeldTyp

            }
        }
       
        // Feld:
        try {
            FeldTyp xmlFeld = this.xmlAufn.getAufnahme().getUmgebung();
            byte[] plainFeld = StaticMethods.decompressByteStream(
                    xmlFeld.getFeld(),
                    this.pars);
            byte[][] neuesFeld
                = new byte[xmlFeld.getGroesse().getX()]
                          [xmlFeld.getGroesse().getY()];
            int k = 0;
            for (int i = 0; i < neuesFeld.length; i++) {
                for (int j = 0; j < neuesFeld[0].length; j++) {
                    neuesFeld[i][j] = plainFeld[k];
                    k++;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.