

    public void singlePlot(int choice) {
          M.selectTile(new SearchTile(D.P[choice].W));
	  M.x=D.P[choice].x;
          M.y=D.P[choice].y;
	  M.n=D.P[choice].n;
	  WI.W=D.P[choice].W;
	  if(X[1].on==1) {select=choice;setCenter();}
          PlottingPoly plotter=new PlottingPoly(M,this);
          I=new Interrupter();
          Tile tile=plotter.plot(D.P[choice].W, I);
	  S[choice].on=1; 
	  S[choice].C=M.getColor(); 
          M.plotTile(tile); 
	  repaint();
    }



    public void singleProve(int choice) {
	if((choice>=7)&&(choice<=221)) {
          M.selectTile(new SearchTile(D.P[choice].W));
	  M.x=D.P[choice].x;
          M.y=D.P[choice].y;
	  M.n=D.P[choice].n;
	  WI.W=D.P[choice].W;
          PlottingPoly2 plotter=new PlottingPoly2(M,this);  
          I=new Interrupter();
          Tile tile=plotter.plot(D.P[choice].W, I);
	  S[choice].on=1; 
	  S[choice].C=M.getColor(); 
          M.plotTile(tile); 
	  repaint();
	}
    }
