Subversion Repositories gelsvn

Rev

Rev 448 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 448 Rev 595
Line -... Line 1...
-
 
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 17/08/08.
8
 * @file HMesh/load.h
6
 *  Copyright 2008 __MyCompanyName__. All rights reserved.
9
 * @brief Load a Manifold from various types of files.
7
 *
10
 */
-
 
11
 
8
 */
12
 
9
 
13
 
10
#ifndef __HMESH_LOAD__H__
14
#ifndef __HMESH_LOAD__H__
11
#define __HMESH_LOAD__H__
15
#define __HMESH_LOAD__H__
12
 
16
 
13
#include "HMesh/Manifold.h"
17
#include <string>
14
 
18
 
15
namespace HMesh
19
namespace HMesh
16
{
20
{
-
 
21
    class Manifold;
-
 
22
 
17
	/** Load a geometry file. This could be a PLY, OBJ, X3D, or OFF file */
23
    /// Load a geometry file. This could be a PLY, OBJ, X3D, or OFF file
18
	bool load(const std::string&, HMesh::Manifold& m);
24
    bool load(const std::string&, Manifold& m);
19
}
25
}
20
#endif
-
 
21
 
26
 
22
 
27
#endif
23
 
28