Database
active.txt
Associated article: The Active Expressions Library
Tags: Database
Source code accompanying the article by Mauricio de Simone and Gregory V. Wilson in which they describe the Active Expressions library, which combines the conciseness and checkability of language extensions with the portability and extensibility of a library. Also see ACTIVE.ZIP.
The Active Expressions Library
by Mauricio de Simone and Gregory V. Wilson
Listing One
struct MandelTile
{
float xLo, yLo, xHi, yHi; // boundary coordinates of tile
int xPixels, yPixels; // number of pixels in tile
};
Listing Two
struct PixelBlock
{
int xPixels, yPixels; // ...


