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
RevLine 
[258]1#pragma once
[262]2#include "terrainModificationTechnique.h"
[258]3
[262]4
5class ellipsoidTechnique : public terrainModificationTechnique
[258]6{
7public:
8        ellipsoidTechnique();
9        ~ellipsoidTechnique();
10
[271]11        void modifyHeightfield(region& modificationROI, osg::HeightField* h, region tileExtends);
[262]12        void setModifiedHeight(double height) {_height=height;}
13
14private:
15        double _height;
[258]16};
17
18       
Note: See TracBrowser for help on using the repository browser.