Package preseci_krugova

Examples of preseci_krugova.Krug


   
    ActionManager.getInstance().modifiersEnabled(false);
  }
 
  public void select(int x, int y) {
    Krug selektovan = traziPreseke.selektuj(x, y);
   
    unselect();
   
    if (selektovan != null) {
      selected = selektovan;
     
      selektovan.setSelektovan(true);
     
      ActionManager.getInstance().modifiersEnabled(true);
    }
   
    drawImage();
View Full Code Here


       
        x = sc.nextInt();
        y = sc.nextInt();
        r = sc.nextInt();
       
        traziPreseke.dodajKrug(new Krug(new Tacka(x,y), r));
      }
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    }
   
View Full Code Here

TOP

Related Classes of preseci_krugova.Krug

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.