DGtal 1.3.0
Loading...
Searching...
No Matches
io/boards/dgtalBoard3DTo2D-5-custom.cpp

Example of a custom display (with Board3DTo2D)

See also
Changing the style for displaying drawable elements.
Example of several custom display (with Board3DTo2D).
#include <iostream>
#include "DGtal/io/boards/Board3DTo2D.h"
#include "DGtal/io/DrawWithDisplay3DModifier.h"
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/shapes/Shapes.h"
using namespace std;
using namespace DGtal;
using namespace Z3i;
// Standard services - public :
int main()
{
Point p1( -1, -1, -2 );
Point p2( 2, 2, 3 );
Domain domain( p1, p2 );
Point p3( 1, 1, 1 );
Point p4( 2, -1, 3 );
Point p5( -1, 2, 3 );
Point p6( 0, 0, 0 );
Point p0( 0, 2, 1 );
board << SetMode3D( p1.className(), "PavingWired" );
board << p1 << p2 << p3;
//board << SetMode3D( p1.className(), "Grid" );
board << CustomColors3D(Color(250, 0,0),Color(250, 0,0));
board << p4 << p5 ;
board << SetMode3D( p1.className(), "Both" );
board << CustomColors3D(Color(250, 200,0, 100),Color(250, 0,0, 100));
board << p6;
board << CustomColors3D(Color(250, 200,0, 100),Color(250, 200,0, 20));
board << p0;
board << SetMode3D(domain.className(), "Paving");
board << domain;
board << SetMode3D(board.className(), "WireFrameMode");
board.saveCairo("dgtalBoard3DTo2D-5-custom-wireframe.png", Board3DTo2D<Space, KSpace>::CairoPNG, 600*2, 400*2);
board << SetMode3D(board.className(), "SolidMode");
board.saveCairo("dgtalBoard3DTo2D-5-custom.png", Board3DTo2D<Space, KSpace>::CairoPNG, 600*2, 400*2);
}
// //
Class for PDF, PNG, PS, EPS, SVG export drawings with Cairo with 3D->2D projection.
Definition: Board3DTo2D.h:71
std::string className() const
Definition: Board3DTo2D.h:106
void saveCairo(const char *filename, CairoType type, int bWidth, int bHeight)
Structure representing an RGB triple with alpha component.
Definition: Color.h:68
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
MyPointD Point
Definition: testClone2.cpp:383
Domain domain
HyperRectDomain< Space > Domain