Example of DGtal kernel and export with Board2D.
Display 2D points in its domain and export woth Board2D.
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/kernel/SpaceND.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/kernel/domains/HyperRectDomain.h"
#include "DGtal/io/boards/Board2D.h"
{
MyPoint p1(-3,-4);
MyPoint p2(10,4);
MyPoint p3(5,1);
board << p1 << p2 << p3;
board.
saveSVG(
"demo-kernel-1.svg");
board.
saveEPS(
"demo-kernel-1.eps");
return 0;
}