Example of digital point export with Display3D.
- See also
- Export objects with Board3D
Illustration of the resulting exported file (OBJ format visualized with blender).
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/io/boards/Board3D.h"
#include "DGtal/helpers/StdDefs.h"
using namespace std;
{
board << p1 << p2 << p3;
board << shape_set;
board.
saveOBJ(
"dgtalBoard3D-1-points.obj");
board2 << p1 ;
board2 << p2 << p3;
board2 << p6;
board2.
saveOBJ(
"dgtalBoard3D-1bis-points.obj");
return 0;
}
std::string className() const