You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
467 B
20 lines
467 B
package seng302;
|
|
|
|
import javafx.scene.paint.Color;
|
|
import seng302.Model.BoatInRace;
|
|
|
|
/**
|
|
* Constants that are used throughout the program
|
|
* Created by Erika on 19-Mar-17.
|
|
*/
|
|
public class Constants {
|
|
|
|
public static final int NMToMetersConversion = 1852; // 1 nautical mile = 1852 meters
|
|
|
|
//Knots x this = meters per second.
|
|
public static final double KnotsToMetersPerSecondConversionFactor = 0.514444;
|
|
|
|
public static final double wakeScale = 10;
|
|
|
|
}
|