CS 111 - 10/28/14 Advising Week is This Week!!! You must get your Advising Hold removed before you can register for next semester!! You must see your advisor before you can get your Advising Hold removed. Pixel Position Manipulation - change the location of varous pixels Each pixel has an X,Y coordinate Pixel pix1 = p1.getPixel ( x, y); Color c1 = pix1.getColor(); // determine the location where we want this pixel // to appear int xModified = formula for X; int yModified = formula for y; Pixel pix2 = p2.getPixel (xModified, yModified); pix2.setColor (c1); Create the Mirror Image of a picture