GifMaker (which also requires the Color module) is the base class for any class which can save itself as a GIF (Graphics Interchange Format) file. You can derive from this class to make plots, graph data, or convert from other formats.
Also provided is a PixelMap class, which derives from GifMaker to give you a simple color-drawing canvass. It includes basic drawing methods for filling rectangular regions, drawing lines, etc. For more advanced drawing functions, use the Turtle class, which provides typical turtle graphics.
Class Name | Purpose | Requires |
---|---|---|
Color | module defining RGB and Palette classes | (nothing) |
GifMaker | Base class of objects which can SaveGif() | Color |
PixelMap | A GifMaker implementing a 2D pixel array | GifMaker, Color |
Turtle | Draws turtle graphics on a PixelMap | PixelMap; math.h |
http://www-ncmir.ucsd.edu/~jstrout/classlib/gifmaker/