examples/ellipse.cpp

/*
 * @file   example4.cpp
 * @author Sebastien Fourey <http://www.greyc.ensicaen.fr/~seb>
 * @date   Tue Aug 21
 * 
 * @brief  Illustration of the use of Board, ShapeList and Group.
 * 
 */
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <cmath>
#include "Board.h"

using namespace LibBoard;

int main( int, char *[] )
{
  Board board;

  board.clear( Color(200,255,200) );
  
  double angle = M_PI * 110/180.0;

  Group g;
  g << Rectangle( 0, 50, 100, 50, Color::Black, Color::None, 1 );
  g << Line( 0, 25, 100, 25, Color(0,0,255), 1 );
  g << Ellipse( 50, 25, 50, 25, Color::Red, Color::None, 1 );
  g.translate( 30, 30 );
  g.rotate( angle );
  g.scale( 1.5, 2 );
  board << g;

  std::cerr << board.boundingBox() << std::endl;
  std::cerr << board.minDepth() << std::endl;
  std::cerr << board.maxDepth() << std::endl;
  board.saveEPS( "ellipse.eps" );
  board.saveFIG( "ellipse.fig" );
  board.saveSVG( "ellipse.svg" );
  exit(0);
}
Generated on Fri Jul 16 09:07:38 2010 for Board by  doxygen 1.6.3