File coversPoints.h
File List > algorithm > coversPoints.h
Go to the documentation of this file
// Copyright (c) 2012-2013, IGN France.
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later
#ifndef SFCGAL_COVERS_POINTS_ALGORITHM
#define SFCGAL_COVERS_POINTS_ALGORITHM
#include "SFCGAL/config.h"
#include <vector>
namespace SFCGAL {
class Geometry;
namespace detail {
namespace algorithm {
SFCGAL_API bool
coversPoints(const Geometry &ga, const Geometry &gb);
SFCGAL_API bool
coversPoints3D(const Geometry &ga, const Geometry &gb);
} // namespace algorithm
} // namespace detail
} // namespace SFCGAL
#endif