From 4020a8fb0d135703f6b744369a4a7ca3fcaff468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 10 Dec 2019 13:41:37 +0100 Subject: [PATCH] Add biblio for the paper --- Documentation/doc/biblio/cgal_manual.bib | 11 +++++++++++ .../CGAL/Optimal_bounding_box/oriented_bounding_box.h | 2 ++ 2 files changed, 13 insertions(+) diff --git a/Documentation/doc/biblio/cgal_manual.bib b/Documentation/doc/biblio/cgal_manual.bib index ec232cbda8e..c78a75ca599 100644 --- a/Documentation/doc/biblio/cgal_manual.bib +++ b/Documentation/doc/biblio/cgal_manual.bib @@ -405,6 +405,17 @@ Boissonnat} ,update = "97.08 kettner" } +@article{ cgal:cgm-fobbo-11, + title={Fast oriented bounding box optimization on the rotation group SO (3, ℝ)}, + author={Chang, Chia-Tche and Gorissen, Bastien and Melchior, Samuel}, + journal={ACM Transactions on Graphics (TOG)}, + volume={30}, + number={5}, + pages={122}, + year={2011}, + publisher={ACM} +} + @article{ cgal:cht-oacov-90 ,author = {M. Chang and N. Huang and C. Tang} ,title = {An optimal algorithm for constructing oriented Voronoi diagrams diff --git a/Optimal_bounding_box/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h b/Optimal_bounding_box/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h index 2f2771d3a8e..152df7a6bd2 100644 --- a/Optimal_bounding_box/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h +++ b/Optimal_bounding_box/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h @@ -205,6 +205,8 @@ void construct_oriented_bounding_box(Output& output, /// Note that when returning an array of points, these points are constructed from the axis-aligned /// bounding box and some precision loss should be expected if a kernel not providing exact constructions /// is used. +/// +/// The algorithm is based on a paper by Chang, Gorissen, and Melchior \cgalCite{cgal:cgm-fobbo-11}. /// \ingroup PkgOptimalBoundingBox_Oriented_bounding_box ///