mirror of https://github.com/CGAL/cgal
Merge remote-tracking branch 'cgal/5.5.x-branch'
This commit is contained in:
commit
8966b528fb
|
|
@ -13,6 +13,8 @@
|
|||
#ifndef QGLVIEWER_VEC_H
|
||||
#define QGLVIEWER_VEC_H
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
#include <iostream>
|
||||
#include <math.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue