Subversion Repositories gelsvn

Rev

Rev 61 | Rev 595 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61 Rev 443
1
#ifndef __VOXELGRID_LOAD_RAW_H__
1
#ifndef __GEOMETRY_VOXELGRID_LOAD_RAW_H__
2
#define __VOXELGRID_LOAD_RAW_H__
2
#define __GEOMETRY_VOXELGRID_LOAD_RAW_H__
3
 
3
 
4
#include <string>
4
#include <string>
5
#include "CGLA/Mat4x4f.h"
5
#include "CGLA/Mat4x4f.h"
6
#include "RGrid.h"
6
#include "RGrid.h"
7
 
7
 
8
namespace Geometry
8
namespace Geometry
9
{
9
{
10
 
10
 
11
	template<class T>
11
	template<class T>
12
		bool load_raw(const std::string& file, RGrid<T>& grid);
12
		bool load_raw(const std::string& file, RGrid<T>& grid);
13
	
13
	
14
}
14
}
15
 
15
 
16
#endif
16
#endif
17
 
17