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

utility.cpp « utilities « kdl « itasc « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fc8403bdb70fe29fe6d36eba7f5c3b1f66d3c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** \file itasc/kdl/utilities/utility.cpp
 * \ingroup itasc
 */
/** @file   utility.cpp
 *  @author Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
 *  @version 
 *      ORO_Geometry V0.2
 *   
 *  @par history
 *   - changed layout of the comments to accommodate doxygen
 */
 
#include "utility.h"

namespace KDL {

int STREAMBUFFERSIZE=10000;
int MAXLENFILENAME = 255;
const double PI=       3.1415926535897932384626433832795;
const double deg2rad = 0.01745329251994329576923690768488;
const double rad2deg = 57.2957795130823208767981548141052;
double epsilon = 0.000001;
double epsilon2 = 0.000001*0.000001;
}