Package bridge.klassen

Examples of bridge.klassen.GeoShapes


  public Bridge() {

    JPanel content = new JPanel();
    content.setLayout(null);
    
    shapes.add(new GeoShapes(new Dreieck(0, 0, 100, 100)));
    shapes.add(new GeoShapes(new Rechteck(0, 0, 100, 100)));
    shapes.add(new GeoShapes(new Kreis(0, 0, 100, 100)))
   
    shapes.get(0).add(new Dreieck(0, 0, 300, 150));
   
    int i = 110;
    for (Shape shape : shapes) {
View Full Code Here

TOP

Related Classes of bridge.klassen.GeoShapes

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.