// fill(color)
function
fill(c){
pc.clear(c);
}
// Sample Code
var
pc=
new
PanCake();
pc.reset(0);
pc.clear(0);
fill(12);