Browse Source

lerp does not require t in [0,1]

Darren Ranalli 23 years ago
parent
commit
5392f1c5a8
1 changed files with 0 additions and 1 deletions
  1. 0 1
      direct/src/showbase/PythonUtil.py

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

@@ -512,7 +512,6 @@ def bound(value, bound1, bound2):
 def lerp(v0, v1, t):
     """
     returns a value lerped between v0 and v1, according to t
-    t must be in [0,1]
     t == 0 maps to v0, t == 1 maps to v1
     """
     return v0 + (t * (v1 - v0))