Performs a cubic interpolation between two vectors. Start vector. End vector. Value between 0 and 1 indicating the weight of . When the method completes, contains the cubic interpolation of the two vectors.
(ref Double4 start, ref Double4 end, double amount, out Double4 result)
| 848 | /// <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end" />.</param> |
| 849 | /// <param name="result">When the method completes, contains the cubic interpolation of the two vectors.</param> |
| 850 | public static void SmoothStep(ref Double4 start, ref Double4 end, double amount, out Double4 result) |
| 851 | { |
| 852 | amount = Mathd.SmoothStep(amount); |
| 853 | Lerp(ref start, ref end, amount, out result); |
| 854 | } |
| 855 | |
| 856 | /// <summary> |
| 857 | /// Performs a cubic interpolation between two vectors. |
nothing calls this directly
no test coverage detected