#---------------------------------------------------------------------- # Linear Blending between two points in space # # Copyright (C) April 11, 2018 -- Dr. William T. Verts #---------------------------------------------------------------------- #---------------------------------------------------------------------- # Function to blend between two numeric values. P0, P1, and T may # all be either ints or floats. The return value is a float. # The value is somewhere between P0 and P1 based on T. If T=0 then # the return value is P0 and if T=1 the return value is P1. # If 0