Graphics Effects

This page will explain the graphics effects available in the Stereo Graphics program with pseudo code examples of their implementation. For these examples the following functions will be used:
SetPixel(Image,X,Y,C) - Sets a pixel of the Image at point X,Y to the color C.
GetPixel(Image,X,Y) - Returns the color of the Image at point X,Y.
RGB(R,G,B) - Returns the color with the specified Red, Green and Blue components.
Colors are a class with the following properties:
Color.Red - Red component.
Color.Green - Green component.
Color.Blue - Blue component.