Subversion Repositories gelsvn

Rev

Rev 595 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
595 jab 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
 
2 bj 7
#include "TableTrigonometry.h"
8
 
9
namespace CGLA {
10
 
11
	using namespace std;
12
 
13
	namespace TableTrigonometry
14
	{
15
		const CosTable& COS_TABLE()
16
		{
17
			static CosTable table;
18
			return table;
19
		}
20
	}
21
 
22
}