Purpose: A class that rasterizes two-dimensional objects
Modifications
The setPixel() Method:
/** * Set the pixel at coordinates (x,y) to the given Color * * @param x The x-coordinate * @param y The y-coordinate * @param color The color */ public void setPixel(int x, int y, Color color)
Copyright 2007