User Tools

Site Tools


turtle_graphics

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
turtle_graphics [2024/09/10 09:13] frchristurtle_graphics [2024/09/12 14:27] (current) – [Make Your own Picture] frchris
Line 43: Line 43:
  
 ===== Java "Animated" APLU Turtle ===== ===== Java "Animated" APLU Turtle =====
-An animated version from Berne, Switzerland has so many classes, they put them all in a Library.  This library is in a file called {{ ::jturtle-0.1.1.jar |jturtle-0.1.1.jar}}.  [[https://mathorama.com/wiki/doku.php?id=how_to_install_the_library_in_bluej| Click here for instructions on how to install it in BlueJ]]+An animated version from Berne, Switzerland has so many classes, they put them all in a Library.  This library is in a file called {{ ::jturtle-0.1.1.jar |jturtle-0.1.1.jar}}.  [[https://mathorama.com/wiki/doku.php?id=how_to_install_the_library_in_bluej| Click here for instructions on how to install it in BlueJ]], and [[https://mathorama.com/wiki/doku.php?id=how_to_install_the_library_in_eclipse|click here for instructions to install a .jar library in Eclipse]]
  
 The [[http://www.aplu.ch/home/apluhomex.jsp?site=65|APLU.ch]] Java Utility Package **ch.aplu.turtle** Description The [[http://www.aplu.ch/home/apluhomex.jsp?site=65|APLU.ch]] Java Utility Package **ch.aplu.turtle** Description
Line 71: Line 71:
            
         Turtle hexter = new Turtle(Color.GREEN);         Turtle hexter = new Turtle(Color.GREEN);
 +        
         hexter.setPos(100,-50);         hexter.setPos(100,-50);
                
-         
         for (int i=0; i< 6; i++) {         for (int i=0; i< 6; i++) {
         hexter.forward(100);         hexter.forward(100);
         hexter.right(-60);         hexter.right(-60);
         }         }
 +        
         hexter.setPos(0,0);         hexter.setPos(0,0);
         hexter.setFillColor(Color.BLUE);         hexter.setFillColor(Color.BLUE);
-     hexter.fill();+ hexter.fill();
            
         Turtle t = new Turtle(hexter);          Turtle t = new Turtle(hexter); 
-        t.setColor(Color.RED); +        t.setPenColor(Color.RED); 
- t.setPos(-200, 180); + t.setPos(-200, 180); 
-     t.hideTurtle().label( "by My name"); + t.hideTurtle()
 +        t.label( "by My name");
            
  }  }
turtle_graphics.1725973998.txt.gz · Last modified: 2024/09/10 09:13 by frchris

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki