mirror of https://github.com/CGAL/cgal
83 lines
2.2 KiB
C++
83 lines
2.2 KiB
C++
// Copyright (c) 2015 GeometryFactory
|
|
//
|
|
// This file is part of CGAL (www.cgal.org)
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
// Author(s) : Mael Rouxel-Labbé
|
|
|
|
#ifndef CGAL_IO_READER_HELPERS_H
|
|
#define CGAL_IO_READER_HELPERS_H
|
|
|
|
#include <CGAL/array.h>
|
|
#include <CGAL/assertions.h>
|
|
#include <CGAL/Has_member.h>
|
|
#include <CGAL/Point_3.h>
|
|
|
|
#include <boost/mpl/logical.hpp>
|
|
#include <boost/utility/enable_if.hpp>
|
|
|
|
namespace CGAL{
|
|
|
|
namespace IO {
|
|
|
|
namespace internal {
|
|
|
|
CGAL_GENERATE_MEMBER_DETECTOR(size);
|
|
CGAL_GENERATE_MEMBER_DETECTOR(resize);
|
|
|
|
// Typical container
|
|
template <class Container>
|
|
void resize(Container& c, std::size_t size,
|
|
typename boost::enable_if_c<has_resize<Container>::value>::type* = nullptr)
|
|
{
|
|
c.resize(size);
|
|
}
|
|
|
|
// Container without a resize() function, but with a size() function (e.g. an array)
|
|
template <class Container>
|
|
void resize(Container& CGAL_assertion_code(array), std::size_t CGAL_assertion_code(size),
|
|
typename boost::enable_if<
|
|
boost::mpl::and_<
|
|
boost::mpl::not_<has_resize<Container> >,
|
|
has_size<Container> > >::type* = nullptr)
|
|
{
|
|
CGAL_assertion(array.size() == size);
|
|
}
|
|
|
|
// A class with neither resize() nor size(), can't enforce size (it better be correct!)
|
|
template <class Container>
|
|
void resize(Container&, std::size_t,
|
|
typename boost::disable_if<
|
|
boost::mpl::or_<has_resize<Container>,
|
|
has_size<Container> > >::type* = nullptr)
|
|
{
|
|
}
|
|
|
|
// Ideally this should be a std::is_constructible(double, double, double) but boost::is_constructible
|
|
// is not safe to use without CXX11
|
|
template <typename Kernel>
|
|
void fill_point(const double x, const double y, const double z, CGAL::Point_3<Kernel>& pt)
|
|
{
|
|
pt = CGAL::Point_3<Kernel>(x, y, z);
|
|
}
|
|
|
|
template <typename Point_3>
|
|
void fill_point(const double x, const double y, const double z, Point_3& pt)
|
|
{
|
|
// just in case something weirder than arrays or CGAL points are used as points...
|
|
resize(pt, 3);
|
|
|
|
pt[0] = x; pt[1] = y; pt[2] = z;
|
|
}
|
|
|
|
} // end namespace internal
|
|
|
|
} // end namespace IO
|
|
|
|
} // namespace CGAL
|
|
|
|
#endif // CGAL_IO_READER_HELPERS_H
|