From 45d9708f0799a26a82073132799d2206cecdc20e Mon Sep 17 00:00:00 2001 From: Guillaume Damiand Date: Fri, 20 Oct 2023 14:53:26 +0200 Subject: [PATCH] Basic viewer names in doc --- .../doc/Basic_viewer/CGAL/Graphics_scene_options.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Basic_viewer/doc/Basic_viewer/CGAL/Graphics_scene_options.h b/Basic_viewer/doc/Basic_viewer/CGAL/Graphics_scene_options.h index 27bb711ab49..1f142ee0b36 100644 --- a/Basic_viewer/doc/Basic_viewer/CGAL/Graphics_scene_options.h +++ b/Basic_viewer/doc/Basic_viewer/CGAL/Graphics_scene_options.h @@ -43,29 +43,29 @@ public: /// `std::function` that returns `true` if the given vertex is colored, `false` otherwise. /// Returns `false` by default. - std::function colored_vertex; + std::function is_vertex_colored; /// `std::function` that returns `true` if the given edge is colored, `false` otherwise. /// Returns `false` by default. - std::function colored_edge; + std::function is_edge_colored; /// `std::function` that returns `true` if the given face is colored, `false` otherwise. /// Returns `false` by default. - std::function colored_face; + std::function is_face_colored; /// `std::function` that returns `true` if the given volume is colored, `false` otherwise. /// Returns `false` by default. /// Exists only if `VolumeDescriptor` is not `void`. - std::function colored_volume; + std::function is_volume_colored; /// `std::function` that returns `true` if the given face is in wireframe, `false` otherwise. /// Returns `false` by default. - std::function face_wireframe; + std::function is_face_wireframe; /// `std::function` that returns `true` if the given volume is in wireframe, `false` otherwise. /// Returns `false` by default. /// Exists only if `VolumeDescriptor` is not `void`. - std::function volume_wireframe; + std::function is_volume_wireframe; /// `std::function` that returns the color of the given vertex. /// `nullptr` by default.