// PixelFitter.java -- given a cookie, figure out how to repeat it
// intelligently

/**
 * Pillsbury Doughboy
 * 
 * @author Mark Ayzenshtat
 * @author Vlad Shchogolev
 * @author David Vespe
 */

package CookieCutter.g1;
import CookieCutter.*;
import java.util.*;

class PixelSolution
{
    public double xOffset;
    public double yOffset;
    public double angle;
    public double goodness;

    public PixelSolution()
    {
	xOffset=0;
	yOffset=0;
	angle = 0;
	goodness = 0;
    }

    public void print()
    {
    }
}

