public void addLight(Light d, int i, int j) {
   double x = skipInit + skipRoad + j * skipRoadCar;
   double y = skipInit + skipRoad + i * skipRoadCar;
   Translator t = new TranslatorWE(x, y, MP.carLength, VP.elementWidth, VP.scaleFactor);
   painter.addLight(d, t);
 }