~ubuntu-branches/ubuntu/vivid/openwalnut/vivid

« back to all changes in this revision

Viewing changes to src/modules/readMesh/WMeshReaderOBJ.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Eichelbaum
  • Date: 2014-03-19 17:46:12 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140319174612-e4mgtr1avbq3f7ph
Tags: 1.4.0~rc1+hg3a3147463ee2-1
* Major functionality and stability improvements.
* Several bug fixes
* Changed ttf-liberation dependency to fonts-liberation (Closes: #722405)
* OpenWalnut now works properly with OpenSceneGraph 3.2 (Closes: #718381)
* See http://www.openwalnut.org/versions/2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//---------------------------------------------------------------------------
 
2
//
 
3
// Project: OpenWalnut ( http://www.openwalnut.org )
 
4
//
 
5
// Copyright 2009 OpenWalnut Community, BSV@Uni-Leipzig and CNCF@MPI-CBS
 
6
// For more information see http://www.openwalnut.org/copying
 
7
//
 
8
// This file is part of OpenWalnut.
 
9
//
 
10
// OpenWalnut is free software: you can redistribute it and/or modify
 
11
// it under the terms of the GNU Lesser General Public License as published by
 
12
// the Free Software Foundation, either version 3 of the License, or
 
13
// (at your option) any later version.
 
14
//
 
15
// OpenWalnut is distributed in the hope that it will be useful,
 
16
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
// GNU Lesser General Public License for more details.
 
19
//
 
20
// You should have received a copy of the GNU Lesser General Public License
 
21
// along with OpenWalnut. If not, see <http://www.gnu.org/licenses/>.
 
22
//
 
23
//---------------------------------------------------------------------------
 
24
 
 
25
#ifndef WMESHREADEROBJ_H
 
26
#define WMESHREADEROBJ_H
 
27
 
 
28
#include <core/common/WObjectNDIP.h>
 
29
 
 
30
#include "WMeshReaderInterface.h"
 
31
 
 
32
/**
 
33
 * Load OBJ meshes
 
34
 */
 
35
class WMeshReaderOBJ: public WObjectNDIP< WMeshReaderInterface >
 
36
{
 
37
public:
 
38
    /**
 
39
     * Constructor
 
40
     */
 
41
    WMeshReaderOBJ();
 
42
 
 
43
    /**
 
44
     * Destructor
 
45
     */
 
46
    virtual ~WMeshReaderOBJ();
 
47
 
 
48
    /**
 
49
     * Load the dataset. Throws exceptions if appropriate. Refer to the implementing class.
 
50
     *
 
51
     * \param parentProgress the progress indicator
 
52
     * \param file path to the file to load
 
53
     *
 
54
     * \return the loaded mesh
 
55
     */
 
56
    virtual WTriangleMesh::SPtr operator()( WProgressCombiner::SPtr parentProgress,
 
57
                                            boost::filesystem::path file );
 
58
};
 
59
 
 
60
#endif  // WMESHREADEROBJ_H
 
61