Subversion Repositories gelsvn

Rev

Rev 595 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 595 Rev 630
1
/* ----------------------------------------------------------------------- *
1
/* ----------------------------------------------------------------------- *
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
3
 * Copyright (C) the authors and DTU Informatics
3
 * Copyright (C) the authors and DTU Informatics
4
 * For license and list of authors, see ../../doc/intro.pdf
4
 * For license and list of authors, see ../../doc/intro.pdf
5
 * ----------------------------------------------------------------------- */
5
 * ----------------------------------------------------------------------- */
6
 
6
 
7
#include "TableTrigonometry.h"
7
#include "TableTrigonometry.h"
8
 
8
 
9
namespace CGLA {
9
namespace CGLA {
10
 
10
 
11
	using namespace std;
11
	using namespace std;
12
 
12
 
13
	namespace TableTrigonometry
13
	namespace TableTrigonometry
14
	{
14
	{
15
		const CosTable& COS_TABLE()
15
		const CosTable& COS_TABLE()
16
		{
16
		{
17
			static CosTable table;
17
			static CosTable table;
18
			return table;
18
			return table;
19
		}
19
		}
20
	}
20
	}
21
 
21
 
22
}
22
}
23
 
23