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 Double3 start, ref Double3 end, double amount, out Double3 result)
| 1036 | /// <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end" />.</param> |
| 1037 | /// <param name="result">When the method completes, contains the cubic interpolation of the two vectors.</param> |
| 1038 | public static void SmoothStep(ref Double3 start, ref Double3 end, double amount, out Double3 result) |
| 1039 | { |
| 1040 | amount = Mathd.SmoothStep(amount); |
| 1041 | Lerp(ref start, ref end, amount, out result); |
| 1042 | } |
| 1043 | |
| 1044 | /// <summary> |
| 1045 | /// Performs a cubic interpolation between two vectors. |
nothing calls this directly
no test coverage detected