Interactive Parabola Grapher
Explore graph ,equation and the locus of a Parabola
Save graphs to your desktop!



A+    A−    B  
Home
Graphing Calc
Algebra
Math Games
  • Decimals in Space
  • Fraction Balls
  • Integers in Space
  • Math Man
  • Number Balls
  • Geometry
    Interactive
    Trigonometry
    Scientific Calc

    GwJeroo

    Starting With Java: Jeroo Style

    Jeroo Page

      First: Downloading and Installing GWJeroo
    • 1) Download this file and extract to a new folder
    • 2) Call me over so I can set up your computer to be able to run GWJeroo
    • 3) Copy and paste the following code into a new class in eclipse.
    import info.gridworld.world.*;
    import info.gridworld.grid.Location;
    
    
    public class runner {
    	
    	public static void main(String[] args) {
    	    JerooWorld world = new JerooWorld();
    	    ExtendedJeroo kim = new ExtendedJeroo();
    	    world.add(new Location(0,0),kim);
    	    world.show();
    	    
    	    kim.turn(Jeroo.RIGHT);
    	    kim.turnAndGo();
    	    
    
    	
    	}
    
    	
    }