26 lines
686 B
C++
26 lines
686 B
C++
// Boost.Geometry (aka GGL, Generic Geometry Library)
|
|
// Robustness Test
|
|
//
|
|
// Copyright (c) 2009-2020 Barend Gehrels, Amsterdam, the Netherlands.
|
|
// Use, modification and distribution is subject to the Boost Software License,
|
|
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef BOOST_GEOMETRY_COMMON_SETTINGS_HPP
|
|
#define BOOST_GEOMETRY_COMMON_SETTINGS_HPP
|
|
|
|
struct common_settings
|
|
{
|
|
bool svg{false};
|
|
bool wkt{false};
|
|
bool also_difference{false};
|
|
double tolerance{1.0e-6};
|
|
|
|
int field_size{10};
|
|
bool triangular{false};
|
|
|
|
bool check_validity{true};
|
|
};
|
|
|
|
#endif // BOOST_GEOMETRY_COMMON_SETTINGS_HPP
|