Subversion Repositories gelsvn

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
667 khor 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
 
7
/**
8
 * @file off_load.h
9
 * @brief Load Manifold from OFF.
10
 */
11
 
12
#ifndef __HMESH_OFF_LOAD_HMESH__
13
#define __HMESH_OFF_LOAD_HMESH__
14
 
15
#include <string>
16
 
17
namespace HMesh
18
{
19
    class Manifold;
20
 
21
    /// Load an OFF file (Object File Format). So far, this loader is mostly ensured to load files from the Princeton Shape Benchmark.
22
    bool off_load(const std::string&, Manifold& m);
23
}
24
 
25
#endif