DGtal 1.3.0
Loading...
Searching...
No Matches
viewer3D-4-modes.cpp
1
39#include <iostream>
40
41#include "DGtal/base/Common.h"
42#include "DGtal/helpers/StdDefs.h"
43#include "DGtal/shapes/Shapes.h"
44#include "DGtal/io/viewers/Viewer3D.h"
45
47
48using namespace std;
49using namespace DGtal;
50using namespace Z3i;
51
52
54// Standard services - public :
55
56int main( int argc, char** argv )
57{
58
59 QApplication application(argc,argv);
60 typedef Viewer3D<> MyViewer;
61
62 MyViewer viewer;
63 viewer.show();
64
65
66
67 Point p1( -1, -1, -2 );
68 Point p2( 2, 2, 3 );
69 Domain domain( p1, p2 );
70 Point p3( 1, 1, 1 );
71 Point p4( 2, -1, 3 );
72 Point p5( -1, 2, 3 );
73 Point p6( 0, 0, 0 );
74 Point p0( 0, 2, 1 );
75
76 viewer << SetMode3D( p1.className(), "Paving" );
77
78 viewer << p1 << p2 << p3<< p4<< p5 << p6 << p0;
79
80 viewer << SetMode3D(domain.className(), "Grid");
82
83
84 return application.exec();
85}
86// //
std::string className() const
virtual void show()
Overload QWidget method in order to add a call to updateList() method (to ensure that the lists are w...
DGtal is the top-level namespace which contains all DGtal functions and types.
STL namespace.
Modifier class in a Display3D stream. Useful to choose your own mode for a given class....
int main()
Definition: testBits.cpp:56
Domain domain