#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) ) );
}
for ( double x = -1.0; x < 1.1; x += 0.1 ) {
}
.
setFont( Fonts::HelveticaBold, 12.0 )
board << board.
last<
Text>().rotated( 45 * Board::Degree );
board << board.
last<
Text>().rotated( 45 * Board::Degree );
board << board.
last<
Text>().rotated( 45 * Board::Degree );
board << board.
last<
Text>().rotated( 45 * Board::Degree );
board.
saveEPS(
"draw2_A4.eps", Board::A4 );
board.
saveFIG(
"draw2_A4.fig", Board::A4 );
board.
saveSVG(
"draw2_A4.svg", Board::A4 );
exit(0);
}