001package myproject.model; 002 003/** 004 * Static class for model parameters. 005 */ 006public class MP { 007 private MP() {} 008 /** Length of cars, in meters */ 009 public static double carLength = 10; 010 /** Length of roads, in meters */ 011 public static double roadLength = 200; 012 /** Maximum car velocity, in meters/second */ 013 public static double maxVelocity = 6; 014} 015