Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Precision.h « system « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21f40a50074d373c084bba4d1abfcf114ea77de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

/** \file
 * \ingroup freestyle
 * \brief Define the float precision used in the program
 */

namespace Freestyle {

typedef double real;

#ifndef SWIG
static const real M_EPSILON = 0.00000001;
#endif  // SWIG

} /* namespace Freestyle */