Merge remote-tracking branch 'cgal/5.5.x-branch'

This commit is contained in:
Sébastien Loriot 2023-05-30 19:15:11 +02:00
commit 8966b528fb
4 changed files with 5 additions and 3 deletions

View File

@ -13,6 +13,8 @@
#ifndef QGLVIEWER_VEC_H
#define QGLVIEWER_VEC_H
#include <QtGlobal>
#include <iostream>
#include <math.h>

View File

@ -19,7 +19,7 @@ affine hull of the points in `A = tuple [first,last)`.
\tparam ForwardIterator has `Kernel_d::Point_d` as value type.
*/
template <class ForwardIterator> Bounded_side
template <class ForwardIterator> bool
operator()( ForwardIterator first, ForwardIterator last, const
Kernel_d::Point_d& p);

View File

@ -18,7 +18,7 @@ linear hull of the vectors in `A = tuple [first,last)`.
\pre The objects are of the same dimension.
\tparam ForwardIterator has `Kernel_d::Vector_d` as value type.
*/
template <class ForwardIterator> Bounded_side
template <class ForwardIterator> bool
operator()( ForwardIterator first, ForwardIterator last, const
Kernel_d::Vector_d& v);

View File

@ -19,7 +19,7 @@ simplex of the points in `A = tuple [first,last)`.
\pre The objects in \f$ A\f$ are of the same dimension and affinely independent.
\tparam ForwardIterator has `Kernel_d::Point_d` as value type.
*/
template <class ForwardIterator> Bounded_side
template <class ForwardIterator> bool
operator()( ForwardIterator first, ForwardIterator last, const
Kernel_d::Point_d& p);