Browse Source

*** empty log message ***

Joe Shochet 23 years ago
parent
commit
36b15e40cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/showbase/PythonUtil.py

+ 1 - 1
direct/src/showbase/PythonUtil.py

@@ -363,7 +363,7 @@ def reduceAngle(deg):
     """
     """
     return (math.fmod((deg + 180.0), 360.0) - 180.0)
     return (math.fmod((deg + 180.0), 360.0) - 180.0)
     
     
-def shortestDestAngle2(src, dest):
+def shortestDestAngle(src, dest):
     """
     """
     Returns a version of dest that is numerically closest to src. It is
     Returns a version of dest that is numerically closest to src. It is
     assumed that src is between -180. and 180.
     assumed that src is between -180. and 180.