Uses of IObject in |
---|
Classes in that implement IObject | |
class |
RallyCar
This is the class that you must implement to enable your car within the CodeRally track. |
Uses of IObject in com.ibm.rally |
---|
Subinterfaces of IObject in com.ibm.rally | |
interface |
ICar
This interface is used by all cars on the track. |
interface |
ISpareTire
This interface is used by the spare tires that have been thrown across the track. |
Classes in com.ibm.rally that implement IObject | |
class |
Car
This class is the superclass of the RallyCar that you implement. |
Methods in com.ibm.rally that return IObject | |
IObject[] |
Car.getFuelDepots()
Returns the available fuel depots for this match. |
IObject[] |
Car.getSpareTireDepot()
Returns the available spare tire depots for this match. |
IObject[] |
Car.getCheckpoints()
Returns a list of checkpoints that you can pass to gain points. |
Methods in com.ibm.rally with parameters of type IObject | |
double |
Car.getDistanceTo(IObject obj)
|
int |
Car.getHeadingTo(IObject obj)
|
double |
IObject.getDistanceTo(IObject obj)
Returns the distance to the given object. |
int |
IObject.getHeadingTo(IObject obj)
Returns the heading (angle) to the given object. |