package week14day2;

import java.awt.Color;

public class SinglePixel extends Shape{

	public SinglePixel(Color color, double xPerc, double yPerc) {
		super(color, xPerc, yPerc);
	}
	
	//uses default drawTo
	
	public String toString(){
		return "Pixel(" + xRatio + ", " + yRatio + ")";
	}

}
