Example of OFF file importation and display.
- See also
- Import 3D mesh from OFF file
Visualisation of the sample/tref.off file
#include "DGtal/io/readers/MeshReader.h"
#include "DGtal/io/Display3D.h"
#include "DGtal/io/viewers/Viewer3D.h"
#include "DGtal/base/Common.h"
#include "DGtal/io/Color.h"
#include "ConfigExamples.h"
int main(
int argc,
char** argv )
{
QApplication application(argc,argv);
std::string inputFilename = examplesPath + "samples/tref.off";
anImportedMesh << inputFilename;
trace.
info()<<
"importating done..."<< endl;
viewer << anImportedMesh;
viewer << Viewer3D<>::updateDisplay;
return application.exec();
}
Structure representing an RGB triple with alpha component.
virtual void setLineColor(DGtal::Color aColor)
Aim: This class is defined to represent a surface mesh through a set of vertices and faces....
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.