Results 1 to 1 of 1
Thread: Making the bike pedal
- 03-22-2011, 06:53 AM #1
Member
- Join Date
- Mar 2011
- Posts
- 1
- Rep Power
- 0
Making the bike pedal
hi, im trying to make a bike move by using the pedal() method, the method will move the bike forward a distance of half the circumference of a wheel. ive tried creating the pedal() method however when the method is invoke the position of the bike is still the same. please help me. thanks.
Java Code:public class Wheel { private double position; private double radius; public Wheel() { position = 0.0; radius = 50.0; } public void setRadius(double newRadius) { radius = newRadius; } public void setPosition(double newPosition) { position = newPosition; } public void rollForward(double distance) { position = position + distance; } public double getPosition() { return position; } public double getRadius() { return radius; } public double getCircumference() { double circumference; circumference = 2*radius*Math.PI; return circumference; } }Java Code:public class Bike { private Wheel frontWheel; private Wheel backWheel; public Bike() { frontWheel = new Wheel(); backWheel = new Wheel(); frontWheel.setPosition(50); backWheel.setPosition(-50); } public double getPosition() { double position; position = (frontWheel.getPosition() + backWheel.getPosition())/2; return position; } public double pedal() // here's my problem { double position; position = getPosition() + frontWheel.getCircumference()/2; return position; } }
Similar Threads
-
making an exe from .jar
By ron2794 in forum NetBeansReplies: 3Last Post: 02-04-2011, 08:28 AM -
Need help making a GUI
By DrKilljoy in forum New To JavaReplies: 21Last Post: 07-15-2010, 03:44 AM -
Need help making .jar
By yoodidoo in forum EclipseReplies: 4Last Post: 08-03-2009, 08:57 PM -
How would I go about making something like this...
By split in forum New To JavaReplies: 3Last Post: 07-15-2009, 06:10 AM -
testing midi pedal feedback
By willemjav in forum New To JavaReplies: 0Last Post: 10-03-2008, 11:55 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks