Examples of DreieckRot


Examples of bridge.objekte.DreieckRot

            DrawingAPI object = (DrawingAPI) shape.getGraphicObjectByIndex(i);
           
            System.out.println(shape.getGraphicObjectByIndex(i).toString());
           
            if(shape.getGraphicObjectByIndex(i).toString().contains("Dreieck")) {
              shape.switchObjectTo(new DreieckRot(object.getX(), object.getY(), object.getWidth(), object.getHeight()), i);
            }
           
            else if(shape.getGraphicObjectByIndex(i).toString().contains("Rechteck")) {
              shape.switchObjectTo(new RechteckRot(object.getX(), object.getY(), object.getWidth(), object.getHeight()), i);
            }
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.