This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <CGAL/Simple_cartesian.h> | |
typedef CGAL::Simple_cartesian<double> Kernel; | |
typedef Kernel::FT Scalar; | |
typedef Kernel::Point_3 Point; | |
typedef Kernel::Vector_3 Vector; | |
#include <CGAL/Surface_mesh.h> | |
typedef CGAL::Surface_mesh<Point> Surfacemesh; | |
#include <CGAL/centroid.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <boost/any.hpp> | |
#include <boost/array.hpp> | |
#include <boost/assert.hpp> | |
#include <boost/assign.hpp> | |
#include <boost/bimap.hpp> | |
#include <boost/bimap/bimap.hpp> | |
#include <boost/bimap/multiset_of.hpp> | |
#include <boost/bind.hpp> | |
#include <boost/call_traits.hpp> | |
#include <boost/concept/assert.hpp> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <CGAL/Simple_cartesian.h> | |
#include <CGAL/Cartesian.h> | |
#include <CGAL/Simple_homogeneous.h> | |
#include <CGAL/Homogeneous.h> | |
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h> | |
#include <CGAL/Exact_predicates_exact_constructions_kernel.h> | |
typedef CGAL::Exact_predicates_inexact_constructions_kernel EPIC; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#.rst: | |
# FindLEDA | |
# ---------- | |
# | |
# FindModule for LEDA. | |
# | |
# IMPORTED Targets | |
# ^^^^^^^^^^^^^^^^ | |
# | |
# This module defines the :prop_tgt:`IMPORTED` target ``LEDA::LEDA``, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <type_traits> | |
template <typename T> | |
struct Foo { | |
static_assert(std::is_same<T, int>::value, "Foobar"); | |
}; | |
template<typename> void use_type() {} | |
#define CGAL_USE_TYPE(T) use_type<T>() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <boost/function.hpp> | |
#include <boost/ref.hpp> | |
#include <iostream> | |
class X { | |
public: | |
void foobar() { | |
// do stuff | |
// if func_ is set, call it | |
if(func_) { func_(23); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _TDS_H_ | |
#define _TDS_H_ | |
#include <CGAL/config.h> | |
#include <CGAL/Compact_container.h> | |
// dimension | |
#include <boost/mpl/int.hpp> | |
// for property bundle implementation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project(foobar) | |
install(DIRECTORY projectA/include DESTINATION include) | |
install(DIRECTORY projectB/include DESTINATION include) | |
set(CPACK_SOURCE_GENERATOR "TBZ2") | |
set(CPACK_SOURCE_IGNORE_FILES "${CPACK_SOURCE_IGNORE_FILES};.git/;.gitignore;.gitattributes;/build*/") | |
include(CPack) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <boost/graph/graph_traits.hpp> | |
#include <boost/parameter.hpp> | |
namespace graphs | |
{ | |
BOOST_PARAMETER_NAME(graph) // Note: no semicolon | |
BOOST_PARAMETER_NAME(visitor) | |
BOOST_PARAMETER_NAME(root_vertex) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <typename T> | |
struct is_poolable; | |
template <typename Poolable> | |
struct Pooling_traits { | |
typedef hidden size_type; | |
/// \name Query Functions | |
/// @{ |
NewerOlder