doc: correct typo and add missing parameters

This commit is contained in:
Sébastien Loriot 2010-11-03 13:54:16 +00:00
parent 2b2d11a9a2
commit 71a0100f34
4 changed files with 10 additions and 4 deletions

View File

@ -26,7 +26,9 @@ associating a point to a (non-normalized) barycentric coordinate. See
farin_c1_interpolation(RandomAccessIterator first,
RandomAccessIterator beyond, const typename
std::iterator_traits<RandomAccessIterator>::value_type::second_type&
norm, Functor function_value, GradFunctor function_gradient, const
norm, const typename
std::iterator_traits<ForwardIterator>::value_type::first_type& p,
Functor function_value, GradFunctor function_gradient, const
Traits& traits);} {generates the interpolated function value
computed by Farin's interpolant \cite{f-sodt-90}. See also
\ccc{sibson_c1_interpolation}. \ccPrecond{\ccc{norm} $\neq 0$.

View File

@ -19,7 +19,7 @@ values which must be provided via a functor.
\ccInclude{CGAL/interpolation_functions.h}
\ccFunction{template < class ForwardIterator, class Functor> typename
Functor::result_type linear_interpolation(ForwardIterator first,
Functor::result_type::first_type linear_interpolation(ForwardIterator first,
ForwardIterator beyond, const typename
std::iterator_traits<ForwardIterator>::value_type::second_type&
norm, Functor function_values);}{\ccc{ForwardIterator::value_type}

View File

@ -25,7 +25,9 @@ See \ccc{sibson_c1_interpolation}.
GradFunctor, class Traits> typename Functor::result_type
quadratic_interpolation(ForwardIterator first, ForwardIterator
beyond, const typename std::iterator_traits<ForwardIterator>::
value_type::second_type& norm, Functor function_value, GradFunctor
value_type::second_type& norm,
const typename std::iterator_traits<ForwardIterator>::value_type::
first_type& p, Functor function_value, GradFunctor
function_gradient,const Traits& traits);} {
% \ccc{ForwardIterator::value_type} is a pair associating a point to a
% (non-normalized) barycentric coordinate. \ccc{norm} is the

View File

@ -83,7 +83,9 @@ function gradient given a point.
sibson_c1_interpolation_square(ForwardIterator first,
ForwardIterator beyond, const typename
std::iterator_traits<ForwardIterator>::value_type::second_type&
norm, Functor function_value, GradFunctor function_gradient,const
norm, const typename
std::iterator_traits<ForwardIterator>::value_type::first_type& p,
Functor function_value, GradFunctor function_gradient,const
Traits& traits);} {The same as above except that no square root
operation is needed for \ccc{FT}.}