This simple example shows the basic usage of a Board2D to export graphical representations of dgtal objects (here, a HyperRectDomain and three points exported as SVG and EPS).
visualization of one of the resulting export.
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/io/boards/Board2D.h"
#include "DGtal/helpers/StdDefs.h"
{
trace.beginBlock (
"Example dgtalBoard2D-1-points" );
board <<
domain << p1 << p2 << p3;
board.
saveSVG(
"dgtalBoard2D-1-points.svg");
board.
saveEPS(
"dgtalBoard2D-1-points.eps");
board.
saveTikZ(
"dgtalBoard2D-1-points.tikz");
#ifdef DGTAL_WITH_CAIRO
#endif
return 0;
}
Aim: This class specializes a 'Board' class so as to display DGtal objects more naturally (with <<)....
void saveTikZ(const char *filename, PageSize size=Board::BoundingBox, double margin=10.0) const
void saveEPS(const char *filename, PageSize size=Board::BoundingBox, double margin=10.0) const
void saveSVG(const char *filename, PageSize size=Board::BoundingBox, double margin=10.0) const
void saveCairo(const char *filename, CairoType type=CairoPNG, PageSize size=Board::BoundingBox, double margin=10.0) const
Z2i this namespace gathers the standard of types for 2D imagery.
DGtal is the top-level namespace which contains all DGtal functions and types.
HyperRectDomain< Space > Domain