Example of clipped object export with Display3D.
- See also
- Export objects with Board3D
Illustration of the resulting exported file (OBJ format visualized with blender).
$
#include <iostream>
#include "DGtal/io/boards/Board3D.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 Z3i;
{
board << shape_set;
board <<
SetMode3D( p1.className(),
"Paving" );
board.
saveOBJ(
"board3D-6-clipping.obj");
}