CGAL 6.0 - Surface Mesh
Loading...
Searching...
No Matches
Draw a Surface Mesh

#include<CGAL/draw_surface_mesh.h>

Functions

template<class SM , class GSOptions >
void draw (const SM &sm, const GSOptions &gso)
 opens a new window and draws a surface mesh.
 
template<class SM >
void draw (const SM &sm)
 A shortcut to CGAL::draw(sm, Graphics_scene_options{}).
 
template<class SM , class GSOptions >
void add_to_graphics_scene (const SM &sm, CGAL::Graphics_scene &gs, const GSOptions &gso)
 adds the vertices, edges and faces of sm into the given graphic scene gs.
 
template<class SM >
void add_to_graphics_scene (const SM &sm, CGAL::Graphics_scene &gs)
 A shortcut to CGAL::add_to_graphics_scene(sm, gs, Graphics_scene_options{}).
 

Function Documentation

◆ add_to_graphics_scene()

template<class SM , class GSOptions >
void add_to_graphics_scene ( const SM &  sm,
CGAL::Graphics_scene &  gs,
const GSOptions &  gso 
)

#include <CGAL/draw_surface_mesh.h>

adds the vertices, edges and faces of sm into the given graphic scene gs.

Parameters of the cells are taken from the optional graphics scene options parameter gso. Note that gs is not cleared before being filled (to enable to draw several data structures in the same basic viewer).

Template Parameters
SMwhich must be an instanciation of a CGAL::Surface_mesh<...>.
GSOptionsa model of GraphicsSceneOptions concept.
Parameters
smthe surface mesh to draw.
gsthe graphic scene to fill.
gsothe graphics scene options parameter.
Advanced

The real declaration of this function template is:

template<class K, class GSOptions>

void CGAL::add_to_graphics_scene(const CGAL::Surface_mesh<K>& sm, CGAL::Graphics_scene& gs, const GSOptions& gso);

◆ draw()

template<class SM , class GSOptions >
void draw ( const SM &  sm,
const GSOptions &  gso 
)

#include <CGAL/draw_surface_mesh.h>

opens a new window and draws a surface mesh.

Parameters of the drawing are taken from the optional graphics scene options parameter.

A call to this function blocks the execution of the program until the drawing window is closed. This function requires CGAL_Qt6, and is only available if the macro CGAL_USE_BASIC_VIEWER is defined. Linking with the cmake target CGAL::CGAL_Basic_viewer will link with CGAL_Qt6 and add the definition CGAL_USE_BASIC_VIEWER.

Template Parameters
SMwhich must be an instanciation of a CGAL::Surface_mesh<...>.
GSOptionsa model of GraphicsSceneOptions concept.
Parameters
smthe surface mesh to draw.
gsothe graphics scene options parameter.
Advanced

The real declaration of this function template is:

template<class K, class GSOptions>

void CGAL::draw(const CGAL::Surface_mesh<K>& sm, const GSOptions& gso);