Basic viewer doc: variable name

This commit is contained in:
Guillaume Damiand 2023-10-20 12:12:51 +02:00
parent e1cd107698
commit 0c8704f1ef
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public:
opens a new window and draws the given `Graphics_scene` (which must have been filled before). `title` will be the title of the window. A call to this method 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 <typename BufferType=float>
void draw_graphics_scene(const Graphics_scene<BufferType>& graphic_buffer,
void draw_graphics_scene(const Graphics_scene<BufferType>& graphic_scene,
const char *title="CGAL Basic Viewer")
{}