Example of default visualization of a digital point sets with the associated domain
- See also
- Examples with Objet modes
Illustration of the Paving/Grid modes on 3D points
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/shapes/Shapes.h"
#include "DGtal/io/viewers/Viewer3D.h"
using namespace std;
using namespace Z3i;
int main(
int argc,
char** argv )
{
QApplication application(argc,argv);
typedef Viewer3D<> MyViewer;
MyViewer viewer;
viewer.show();
viewer << SetMode3D( p1.className(), "Paving" );
viewer << p1 << p2 << p3<< p4<< p5 << p6 << p0;
viewer << SetMode3D(
domain.className(),
"Grid");
viewer <<
domain << MyViewer::updateDisplay;
return application.exec();
}
DGtal is the top-level namespace which contains all DGtal functions and types.
int main(int argc, char **argv)
HyperRectDomain< Space > Domain