CGAL 5.5 - 2D Regularized Boolean Set-Operations

#include <CGAL/draw_polygon_set_2.h>

Functions

template<class PS >
void CGAL::draw (const PS &aps)
 opens a new window and draws aps, an instance of the CGAL::Polygon_set_2 class. More...
 

Function Documentation

◆ draw()

template<class PS >
void CGAL::draw ( const PS &  aps)

#include <CGAL/draw_polygon_set_2.h>

opens a new window and draws aps, an instance of the CGAL::Polygon_set_2 class.

A call to this function is blocking, that is the program continues as soon as the user closes the window. This function requires CGAL_Qt5, 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_Qt5 and add the definition CGAL_USE_BASIC_VIEWER.

Template Parameters
PSan instance of the CGAL::Polygon_set_2 class.
Parameters
apsthe polygon set to draw.
Examples:
Boolean_set_operations_2/draw_polygon_set.cpp.