From be57b3f2e64bef4bed210cbaf570d0f4625f07d1 Mon Sep 17 00:00:00 2001 From: Remy Thomasse Date: Mon, 23 Jun 2014 15:33:56 +0200 Subject: [PATCH] typo --- Generator/doc/Generator/CGAL/random_convex_hull_in_disc_2.h | 2 +- Generator/examples/Generator/random_convex_hull_2.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Generator/doc/Generator/CGAL/random_convex_hull_in_disc_2.h b/Generator/doc/Generator/CGAL/random_convex_hull_in_disc_2.h index a6ab2c916b5..c2ae2675c51 100644 --- a/Generator/doc/Generator/CGAL/random_convex_hull_in_disc_2.h +++ b/Generator/doc/Generator/CGAL/random_convex_hull_in_disc_2.h @@ -15,7 +15,7 @@ The generated polygon will have an average number of vertices \f$ n^\frac{1}{3}( - `Generator` has to be a Boost random generator, such as `boost::random::mt19937`. -- `fast` is a Boolean value, `true` for a time-efficienct behavior and `false` for a memory-efficient behavior. +- `fast` is a Boolean value, `true` for a time-efficient behavior and `false` for a memory-efficient behavior. - `Traits` is a model of the concept `RandomConvexHullTraits_2`. diff --git a/Generator/examples/Generator/random_convex_hull_2.cpp b/Generator/examples/Generator/random_convex_hull_2.cpp index 8f4c1bc556a..693a7cf407f 100644 --- a/Generator/examples/Generator/random_convex_hull_2.cpp +++ b/Generator/examples/Generator/random_convex_hull_2.cpp @@ -10,7 +10,7 @@ typedef Exact_predicates_inexact_constructions_kernel K; typedef K::Point_2 Point; typedef K::FT FT; -const FT RADIUS=1.0; +const double RADIUS=1.0; int main( ) { int N=10000;