1namespace mars.rover.domain 2{ 3 public interface Plateau 4 { 5 bool within_x_axis(Coordinate x); 6 bool within_y_axis(Coordinate y); 7 } 8}