#include <iostream>
#include <QtGui/qapplication.h>
#include "DGtal/io/viewers/Viewer3D.h"
#include "DGtal/io/DrawWithDisplay3DModifier.h"
#include "DGtal/io/Color.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 << shape_set;
viewer <<
SetMode3D( shape.className(),
"DrawAdjacencies" );
viewer << shape;
viewer <<
SetMode3D( shape2.className(),
"DrawAdjacencies" );
viewer<< Viewer3D::updateDisplay;
return application.exec();
}