mirror of https://github.com/CGAL/cgal
doc: correct typo and add missing parameters
This commit is contained in:
parent
2b2d11a9a2
commit
71a0100f34
|
|
@ -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$.
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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}.}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue