32 #include <QtGui/qapplication.h>
33 #include "DGtal/io/viewers/Viewer3D.h"
34 #include "DGtal/io/DrawWithDisplay3DModifier.h"
35 #include "DGtal/io/Color.h"
36 #include "DGtal/base/Common.h"
37 #include "DGtal/helpers/StdDefs.h"
38 #include "DGtal/shapes/Shapes.h"
43 using namespace DGtal;
50 int main(
int argc,
char** argv )
53 QApplication application(argc,argv);
59 Point p2( 10, 10 , 10 );
70 viewer <<
SetMode3D( shape.className(),
"DrawAdjacencies" );
74 viewer <<
SetMode3D( shape2.className(),
"DrawAdjacencies" );
77 viewer<< Viewer3D::updateDisplay;
78 return application.exec();