01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
package myproject.model;

/**
 * Static class for model parameters.
 */
public class MP {
  private MP() {}
  /** Length of cars, in meters */
  public static double carLength = 10;
  /** Length of roads, in meters */
  public static double roadLength = 200;
  /** Maximum car velocity, in meters/second */
  public static double maxVelocity = 6;
}