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
/**
7
/**
8
 * @file Geometry/load.h
8
 * @file Geometry/load.h
9
 * @brief Load triangle mesh from one of a small number of file formats.
9
 * @brief Load triangle mesh from one of a small number of file formats.
10
 */
10
 */
11
 
11
 
12
#ifndef __GEOMETRY_LOAD_H__
12
#ifndef __GEOMETRY_LOAD_H__
13
#define __GEOMETRY_LOAD_H__
13
#define __GEOMETRY_LOAD_H__
14
 
14
 
15
#include <string>
15
#include <string>
16
#include "TriMesh.h"
16
#include "TriMesh.h"
17
 
17
 
18
namespace Geometry
18
namespace Geometry
19
{
19
{
20
	/// Load a TriMesh from a file. Loader chosen based on extension.
20
	/// Load a TriMesh from a file. Loader chosen based on extension.
21
	void load(const std::string &filename, TriMesh &mesh);
21
	void load(const std::string &filename, TriMesh &mesh);
22
}
22
}
23
 
23
 
24
 
24
 
25
 
25
 
26
#endif
26
#endif
27
 
27
 
28

Generated by GNU Enscript 1.6.6.
28

Generated by GNU Enscript 1.6.6.
29
 
29
 
30
 
30
 
31
 
31