#include <cstdlib>
#include <iostream>
#include <fstream>
#include <cmath>
int main( int, char *[] )
{
std::vector<Point> points;
for ( double x = -1.0; x < 1.0; x += 0.02 ) {
points.push_back(
Point( x, sin(x*6.28) ) );
}
0, 0,
Color( 0, 255, 0 ),
-0.3, 0.3,
Color( 0, 0, 255 ) );
0, 0, 2.0f,
-0.3, -0.3, 0.1f );
board.
saveEPS(
"draw1_Letter.eps", Board::Letter );
board.
saveFIG(
"draw1_Letter.fig", Board::Letter );
board.
saveSVG(
"draw1_Letter.svg", Board::Letter );
exit(0);
}