Subversion Repositories gelsvn

Rev

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

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