Link to code: MirrorVertically.java

package yourwork;

import ignorethis.Command;
import ignorethis.Pixmap;

/***************************************************************
 * Name:          
 * Course:        CompSci 6, Fall 2009
 * Collaborators:
 * Resources Used
 * Date Started:  
 * Purpose:
 *
 */ 

public class MirrorVertically extends Command
{
    public MirrorVertically ()
    {
        super("Mirror Vertically");
    }


    public void execute (Pixmap target)
    {
        // TODO
    }
}