From 8b7d6067baa5c020cf6d6e3d81548e737ac98349 Mon Sep 17 00:00:00 2001 From: Vissarion Fysikopoulos Date: Fri, 30 Nov 2018 14:35:14 +0200 Subject: [PATCH 1/3] [doc] Fix Hausdorff's and Frechet's names in index.html --- doc/html/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/html/index.html b/doc/html/index.html index e598f37a4..30ad1dd19 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -138,7 +138,7 @@ Adeel Ahmad (Karney's solution of direct and inverse geodesic problems)
  • - Yaghyavardhan Singh Khangarot (discrete frechet and hausdorff distance) + Yaghyavardhan Singh Khangarot (discrete Frechet and Hausdorff distance)
  • From a5b54417156677f0509126ff178fb24f5b2ab816 Mon Sep 17 00:00:00 2001 From: Vissarion Fysikopoulos Date: Fri, 30 Nov 2018 14:36:43 +0200 Subject: [PATCH 2/3] [doc] Fix ordering in imports.qbk and make_qbk.py --- doc/imports.qbk | 8 ++++---- doc/make_qbk.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/imports.qbk b/doc/imports.qbk index 2203ed882..e06c50678 100644 --- a/doc/imports.qbk +++ b/doc/imports.qbk @@ -32,6 +32,10 @@ [import src/examples/algorithms/correct.cpp] [import src/examples/algorithms/densify.cpp] [import src/examples/algorithms/densify_strategy.cpp] +[import src/examples/algorithms/discrete_frechet_distance.cpp] +[import src/examples/algorithms/discrete_frechet_distance_strategy.cpp] +[import src/examples/algorithms/discrete_hausdorff_distance.cpp] +[import src/examples/algorithms/discrete_hausdorff_distance_strategy.cpp] [import src/examples/algorithms/distance.cpp] [import src/examples/algorithms/difference.cpp] [import src/examples/algorithms/envelope.cpp] @@ -63,10 +67,6 @@ [import src/examples/algorithms/relation.cpp] [import src/examples/algorithms/reverse.cpp] [import src/examples/algorithms/return_envelope.cpp] -[import src/examples/algorithms/discrete_frechet_distance.cpp] -[import src/examples/algorithms/discrete_frechet_distance_strategy.cpp] -[import src/examples/algorithms/discrete_hausdorff_distance.cpp] -[import src/examples/algorithms/discrete_hausdorff_distance_strategy.cpp] [import src/examples/algorithms/simplify.cpp] [import src/examples/algorithms/sym_difference.cpp] [import src/examples/algorithms/transform.cpp] diff --git a/doc/make_qbk.py b/doc/make_qbk.py index 49b61cae6..3ec544152 100755 --- a/doc/make_qbk.py +++ b/doc/make_qbk.py @@ -140,13 +140,13 @@ strategies = ["area::cartesian", "area::spherical", "area::geographic" , "distance::pythagoras_point_box", "distance::haversine" , "distance::cross_track", "distance::cross_track_point_box" , "distance::projected_point" - , "within::winding", "within::franklin", "within::crossings_multiply" , "simplify::douglas_peucker" , "side::side_by_triangle", "side::side_by_cross_track" , "side::spherical_side_formula", "side::geographic" , "transform::inverse_transformer", "transform::map_transformer" , "transform::rotate_transformer", "transform::scale_transformer" , "transform::translate_transformer", "transform::matrix_transformer" + , "within::winding", "within::franklin", "within::crossings_multiply" ] views = ["box_view", "segment_view" From b22e3764226b9ce3dfc852897139cccad34b7334 Mon Sep 17 00:00:00 2001 From: Vissarion Fysikopoulos Date: Fri, 30 Nov 2018 14:37:32 +0200 Subject: [PATCH 3/3] Update 1.69 release notes --- doc/release_notes.qbk | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/release_notes.qbk b/doc/release_notes.qbk index 0925408eb..e17b2c4d0 100644 --- a/doc/release_notes.qbk +++ b/doc/release_notes.qbk @@ -40,6 +40,7 @@ * [@https://github.com/boostorg/geometry/pull/505 505] Fixed overflow in overlay algorithms (thanks to Dane Springmeyer). * [@https://github.com/boostorg/geometry/pull/518 518] Fixed passing of temporaries in append() (thanks to xventura81). +* [@https://github.com/boostorg/geometry/pull/522 522] Support python3 in building documentation. [/=================] [heading Boost 1.68]