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
/* ----------------------------------------------------------------------- *
1
#ifndef __HMESH_OFF_SAVE_H__
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
2
#define __HMESH_OFF_SAVE_H__
3
 * Copyright (C) the authors and DTU Informatics
-
 
4
 * For license and list of authors, see ../../doc/intro.pdf
-
 
5
 * ----------------------------------------------------------------------- */
3
 
6
 
4
/*
7
/**
5
 *  off_save.h
8
 * @file off_save.h
6
 *  GEL
-
 
7
 *
-
 
8
 *  Created by J. Andreas Bærentzen on 17/02/09.
9
 * @brief Save Manifold to OFF.
9
 *  Copyright 2009 __MyCompanyName__. All rights reserved.
-
 
10
 *
10
 */
11
 */
11
 
-
 
12
#ifndef __HMESH_OFF_SAVE_H__
-
 
13
#define __HMESH_OFF_SAVE_H__
12
 
14
 
13
#include "HMesh/Manifold.h"
15
#include <string>
14
 
16
 
15
namespace HMesh
17
namespace HMesh
16
{
18
{
-
 
19
    class Manifold;
17
	/** Save in Wavefront OBJ format. */
20
    /** Save in OFF format. */
18
	bool off_save(const std::string&, HMesh::Manifold& m);
21
    bool off_save(const std::string&, HMesh::Manifold& m);
19
	
22
 
20
}
23
}
21
 
24
 
22
#endif
25
#endif