From f96622ebf9a1d9359bdfd6e5d01bd4820fbb2865 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 28 Jun 2004 20:47:39 +0000 Subject: [PATCH] From Matt Burke, typo fix on getMinimumDistance(). --- include/osgGA/TerrainManipulator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgGA/TerrainManipulator b/include/osgGA/TerrainManipulator index 19b131b48..efed6baf9 100644 --- a/include/osgGA/TerrainManipulator +++ b/include/osgGA/TerrainManipulator @@ -43,7 +43,7 @@ class OSGGA_EXPORT TerrainManipulator : public MatrixManipulator void setMinimumDistance(float minimumDistance) { _minimumDistance=minimumDistance; } /** get the minimum distance (as ratio) the eye point can be zoomed in */ - float getMminimumDistance() const { return _minimumDistance; } + float getMinimumDistance() const { return _minimumDistance; } /** set the position of the matrix manipulator using a 4x4 Matrix.*/