mirror of https://github.com/CGAL/cgal
31 lines
818 B
C++
31 lines
818 B
C++
// Copyright (c) 2018-2019 GeometryFactory (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
//
|
|
// Author(s) : Konstantinos Katrioplas
|
|
// Mael Rouxel-Labbé
|
|
//
|
|
#ifndef CGAL_OPTIMAL_BOUNDING_BOX_OBB_H
|
|
#define CGAL_OPTIMAL_BOUNDING_BOX_OBB_H
|
|
|
|
#ifndef DOXYGEN_RUNNING
|
|
#include <CGAL/license/Optimal_bounding_box.h>
|
|
#endif
|
|
|
|
/**
|
|
* \ingroup PkgOptimalBoundingBoxRef
|
|
* \file CGAL/optimal_bounding_box.h
|
|
* Convenience header file including the headers for all the classes and functions of this package.
|
|
*/
|
|
|
|
#include <CGAL/Optimal_bounding_box/Oriented_bounding_box_traits_3.h>
|
|
#include <CGAL/Optimal_bounding_box/oriented_bounding_box.h>
|
|
|
|
#endif // CGAL_OPTIMAL_BOUNDING_BOX_OBB_H
|