~ubuntu-branches/debian/sid/osgearth/sid

« back to all changes in this revision

Viewing changes to src/osgEarthFeatures/ScaleFilter

  • Committer: Bazaar Package Importer
  • Author(s): Pirmin Kalberer
  • Date: 2011-07-14 22:13:36 UTC
  • Revision ID: james.westby@ubuntu.com-20110714221336-94igk9rskxveh794
Tags: upstream-2.0+dfsg
ImportĀ upstreamĀ versionĀ 2.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*-c++-*- */
 
2
/* osgEarth - Dynamic map generation toolkit for OpenSceneGraph
 
3
 * Copyright 2008-2010 Pelican Mapping
 
4
 * http://osgearth.org
 
5
 *
 
6
 * osgEarth is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU Lesser General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 
18
 */
 
19
 
 
20
#ifndef OSGEARTHFEATURES_SCALE_FILTER_H
 
21
#define OSGEARTHFEATURES_SCALE_FILTER_H 1
 
22
 
 
23
#include <osgEarthFeatures/Common>
 
24
#include <osgEarthFeatures/Feature>
 
25
#include <osgEarthFeatures/Filter>
 
26
 
 
27
namespace osgEarth { namespace Features
 
28
{
 
29
    using namespace osgEarth;
 
30
 
 
31
    /**
 
32
     * The scale filter is kind of a poor-man's buffer. It simply
 
33
     * scales and re-centers the feature geometry within its envelope.
 
34
     */
 
35
    class OSGEARTHFEATURES_EXPORT ScaleFilter : public FeatureFilter
 
36
    {
 
37
    public:
 
38
        ScaleFilter();
 
39
        ScaleFilter( double scale );
 
40
 
 
41
        double scale() const { return _scale; }
 
42
        double& scale() { return _scale; }
 
43
 
 
44
    public:
 
45
        virtual FilterContext push( FeatureList& input, const FilterContext& cx );
 
46
 
 
47
    protected:
 
48
        double _scale;
 
49
 
 
50
        bool push( Feature* input, const FilterContext& cx );
 
51
    };
 
52
 
 
53
} } // namespace osgEarth::Features
 
54
 
 
55
#endif // OSGEARTHFEATURES_SCALE_FILTER_H