Tweaks for better OSX paging support, 6 and 9 keys for control drive manipulator

up and down looking, and removed redundent API from osg::Geometry.
This commit is contained in:
Robert Osfield
2005-07-07 14:14:38 +00:00
parent facb0e2638
commit 0d8e38f9ee
3 changed files with 41 additions and 12 deletions

View File

@@ -164,10 +164,7 @@ class OSG_EXPORT Geometry : public Drawable
void setNormalArray(Array* array) { _normalData.array = array; if (!_normalData.array.valid()) _normalData.binding=BIND_OFF; computeFastPathsUsed(); dirtyDisplayList(); }
Array* getNormalArray() { return _normalData.array.get(); }
const Array* getNormalArray() const { return _normalData.array.get(); }
Array* getNormalArrayEx() { return _normalData.array.get(); }
const Array* getNormalArrayEx() const { return _normalData.array.get(); }
void setNormalIndices(IndexArray* array) { _normalData.indices = array; computeFastPathsUsed(); dirtyDisplayList(); }
IndexArray* getNormalIndices() { return _normalData.indices.get(); }
const IndexArray* getNormalIndices() const { return _normalData.indices.get(); }