Subversion Repositories gelsvn

Rev

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

Rev 2 Rev 393
1
#include "TableTrigonometry.h"
1
#include "TableTrigonometry.h"
2
 
2
 
3
namespace CGLA {
3
namespace CGLA {
4
 
4
 
5
	using namespace std;
5
	using namespace std;
6
 
6
 
7
	namespace TableTrigonometry
7
	namespace TableTrigonometry
8
	{
8
	{
9
		const CosTable& COS_TABLE()
9
		const CosTable& COS_TABLE()
10
		{
10
		{
11
			static CosTable table;
11
			static CosTable table;
12
			return table;
12
			return table;
13
		}
13
		}
14
	}
14
	}
15
 
15
 
16
}
16
}
17
 
17