|
|
|
@ -1,5 +1,7 @@
|
|
|
|
package seng302;
|
|
|
|
package seng302;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javafx.scene.paint.Color;
|
|
|
|
|
|
|
|
import seng302.Model.BoatInRace;
|
|
|
|
import seng302.Model.Leg;
|
|
|
|
import seng302.Model.Leg;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
@ -22,5 +24,13 @@ public class Constants {
|
|
|
|
public static final GPSCoordinate finishLineMarker1 = new GPSCoordinate(32.317379, -64.839291);
|
|
|
|
public static final GPSCoordinate finishLineMarker1 = new GPSCoordinate(32.317379, -64.839291);
|
|
|
|
public static final GPSCoordinate finishLineMarker2 = new GPSCoordinate(32.317257, -64.836260);
|
|
|
|
public static final GPSCoordinate finishLineMarker2 = new GPSCoordinate(32.317257, -64.836260);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static final BoatInRace[] OFFICIAL_AC35_COMPETITORS = new BoatInRace[]
|
|
|
|
|
|
|
|
{new BoatInRace("Oracle Team USA", 200.0, Color.BLUEVIOLET),
|
|
|
|
|
|
|
|
new BoatInRace("Land Rover BAR", 180.0, Color.BLACK),
|
|
|
|
|
|
|
|
new BoatInRace("SoftBank Team Japan", 190.0, Color.RED),
|
|
|
|
|
|
|
|
new BoatInRace("Groupama Team France", 210.0, Color.ORANGE),
|
|
|
|
|
|
|
|
new BoatInRace("Artemis Racing", 220.0, Color.DARKOLIVEGREEN),
|
|
|
|
|
|
|
|
new BoatInRace("Emirates Team New Zealand", 310, Color.LIMEGREEN)};
|
|
|
|
|
|
|
|
|
|
|
|
//public static final Leg bermudaCourseStartToMark1 = new Leg(0, , new )
|
|
|
|
//public static final Leg bermudaCourseStartToMark1 = new Leg(0, , new )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|