Subversion Repositories gelsvn

Rev

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

Rev 492 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
 * ----------------------------------------------------------------------- */
1
/*
6
 
2
 *  load.h
-
 
3
 *  GEL
-
 
4
 *
7
/**
5
 *  Created by J. Andreas Bærentzen on 08/03/09.
8
 * @file Geometry/load.h
6
 *  Copyright 2009 __MyCompanyName__. All rights reserved.
9
 * @brief Load triangle mesh from one of a small number of file formats.
7
 *
-
 
8
 */
10
 */
9
 
11
 
10
#ifndef __GEOMETRY_LOAD_H__
12
#ifndef __GEOMETRY_LOAD_H__
11
#define __GEOMETRY_LOAD_H__
13
#define __GEOMETRY_LOAD_H__
12
 
14
 
13
#include <string>
15
#include <string>
14
#include "TriMesh.h"
16
#include "TriMesh.h"
15
 
17
 
16
namespace Geometry
18
namespace Geometry
17
{
19
{
18
	/// Load a TriMesh from a file. Loader chosen based on extension.
20
	/// Load a TriMesh from a file. Loader chosen based on extension.
19
	void load(const std::string &filename, TriMesh &mesh);
21
	void load(const std::string &filename, TriMesh &mesh);
20
}
22
}
21
 
23
 
22
 
24
 
23
 
25
 
24
#endif
26
#endif
25
 
27
 
26

Generated by GNU Enscript 1.6.6.
28

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