source: experimental/TerrainTest/ellipsoidTechnique.h @ 271

Last change on this file since 271 was 271, checked in by Torben Dannhauer, 13 years ago

now both available terrainModificationTechniques are refactored to use the region class.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Rev URL
File size: 358 bytes
Line 
1#pragma once
2#include "terrainModificationTechnique.h"
3
4
5class ellipsoidTechnique : public terrainModificationTechnique
6{
7public:
8        ellipsoidTechnique();
9        ~ellipsoidTechnique();
10
11        void modifyHeightfield(region& modificationROI, osg::HeightField* h, region tileExtends);
12        void setModifiedHeight(double height) {_height=height;}
13
14private:
15        double _height;
16};
17
18       
Note: See TracBrowser for help on using the repository browser.