Last change
on this file since 266 was
264,
checked in by Torben Dannhauer, 14 years ago
|
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Rev URL
|
File size:
366 bytes
|
Line | |
---|
1 | #pragma once |
---|
2 | #include "terrainModificationTechnique.h" |
---|
3 | |
---|
4 | |
---|
5 | class ellipsoidTechnique : public terrainModificationTechnique |
---|
6 | { |
---|
7 | public: |
---|
8 | ellipsoidTechnique(); |
---|
9 | ~ellipsoidTechnique(); |
---|
10 | |
---|
11 | void modifyHeightfield(osg::Vec4d& modificationROI, osg::HeightField* h, osg::Vec4d tileExtends); |
---|
12 | void setModifiedHeight(double height) {_height=height;} |
---|
13 | |
---|
14 | private: |
---|
15 | double _height; |
---|
16 | }; |
---|
17 | |
---|
18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.