Home | History | Annotate | Download | only in source

Lines Matching full:function1

104 		/// Create a dng_1d_function which computes y = function2.Evaluate(function1.Evaluate(x)).
105 /// Compose function1 and function2 to compute y = function2.Evaluate(function1.Evaluate(x)). The range of function1.Evaluate must be a subset of 0.0 to 1.0 inclusive,
106 /// otherwise the result of function1(x) will be pinned (clipped) to 0.0 if <0.0 and to 1.0 if > 1.0 .
107 /// \param function1 Inner function of composition.
110 dng_1d_concatenate (const dng_1d_function &function1,
113 /// Only true if both function1 and function2 have IsIdentity equal to true.
119 /// \retval function2.Evaluate(function1.Evaluate(x)).
126 /// \retval A value x such that function2.Evaluate(function1.Evaluate(x)) == y (to very close approximation).