Example of Domain and Point display in Viewer3D.
- See also
- Display3D: a stream mechanism for displaying 3D DGtal objects
#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"
#include "DGtal/io/viewers/Viewer3D.h"
using namespace std;
int main(
int argc,
char** argv )
{
QApplication application(argc,argv);
typedef HyperRectDomain<MySpace> MyDomain;
MyPoint p1( 0, 0, 0 );
MyPoint p2( 5, 5 ,5 );
MyPoint p3( 2, 3, 4 );
Viewer3D<> viewer;
viewer.show();
viewer << p1 << p2 << p3;
viewer<< Viewer3D<>::updateDisplay;
return application.exec();
}
DGtal is the top-level namespace which contains all DGtal functions and types.
int main(int argc, char **argv)