Subversion Repositories gelsvn

Rev

Rev 448 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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