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

« back to all changes in this revision

Viewing changes to src/modules/fiberResampling/WResampleByMaxPoints.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 WRESAMPLEBYMAXPOINTS_H
 
26
#define WRESAMPLEBYMAXPOINTS_H
 
27
 
 
28
#include <core/common/datastructures/WFiber.h>
 
29
#include <core/common/WObjectNDIP.h>
 
30
 
 
31
#include "WResampling_I.h"
 
32
 
 
33
/**
 
34
 * Resamples fibers so no fiber has more than the given number of Points.
 
35
 */
 
36
class WResampleByMaxPoints : public WObjectNDIP< WResampling_I >
 
37
{
 
38
public:
 
39
    /**
 
40
     * Constructor.
 
41
     */
 
42
    WResampleByMaxPoints();
 
43
 
 
44
protected:
 
45
    /**
 
46
     * The given fiber is resampled by segment length and a copy is returned.
 
47
     *
 
48
     * \param fib Fiber to resample.
 
49
     *
 
50
     * \return Copy of the resampled fiber.
 
51
     */
 
52
    virtual WFiber resample( WFiber fib ) const;
 
53
 
 
54
    /**
 
55
     * Number of new sample points all tracts are resampled to.
 
56
     */
 
57
    WPropDouble m_segLength;
 
58
 
 
59
    /**
 
60
     * Number of max sample points per fiber.
 
61
     */
 
62
    WPropInt m_numPoints;
 
63
private:
 
64
};
 
65
 
 
66
#endif  // WRESAMPLEBYMAXPOINTS_H