#include <iostream>
#include <QtGui/qapplication.h>
#include "DGtal/io/viewers/Viewer3D.h"
#include "DGtal/io/Color.h"
#include "DGtal/io/DrawWithDisplay3DModifier.h"
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/shapes/Shapes.h"
using namespace std;
using namespace DGtal;
using namespace Z3i;
int main( int argc, char** argv )
{
QApplication application(argc,argv);
viewer.show();
viewer <<
SetMode3D( p1.className(),
"PavingWired" );
viewer << p1 << p2 << p3;
viewer << p4 << p5 ;
viewer <<
SetMode3D( p1.className(),
"Both" );
viewer << CustomColors3D(
Color(250, 200,0, 100),
Color(250, 0,0, 100));
viewer << p6;
viewer << CustomColors3D(
Color(250, 200,0, 100),
Color(250, 200,0, 20));
viewer << p0;
viewer <<
SetMode3D(domain.className(),
"Paving");
viewer << domain << Display3D::updateDisplay;
return application.exec();
}