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
 * ----------------------------------------------------------------------- */
-
 
6
 
1
/*
7
/**
2
 *  off_load.h
8
 * @file off_load.h
3
 *  GEL
-
 
4
 *
-
 
5
 *  Created by J. Andreas Bærentzen on 16/02/09.
9
 * @brief Load Manifold from OFF.
6
 *  Copyright 2009 __MyCompanyName__. All rights reserved.
-
 
7
 *
-
 
8
 */
10
 */
9
 
11
 
10
#ifndef __HMESH_OFF_LOAD_HMESH__
12
#ifndef __HMESH_OFF_LOAD_HMESH__
11
#define __HMESH_OFF_LOAD_HMESH__
13
#define __HMESH_OFF_LOAD_HMESH__
12
 
14
 
13
#include "HMesh/Manifold.h"
15
#include <string>
14
 
16
 
15
namespace HMesh
17
namespace HMesh
16
{
18
{
-
 
19
    class Manifold;
-
 
20
 
17
	/** Load an OFF file (Object File Format). So far, this loader is mostly ensured to load files 
21
    /// Load an OFF file (Object File Format). So far, this loader is mostly ensured to load files from the Princeton Shape Benchmark.
18
	 from the Princeton Shape Benchmark.  */
-
 
19
	bool off_load(const std::string&, HMesh::Manifold& m);
22
    bool off_load(const std::string&, Manifold& m);
20
}
23
}
21
 
24
 
22
#endif
25
#endif
23
 
26