Exemple #1
0
 internal static quaternion QuintEaseIn(quaternion a, quaternion b, float t, float d)
 {
     return(slerp(a, b, Easing.QuintEaseIn(t, d)));
 }
 internal static double4 QuintEaseIn(double4 a, double4 b, float t, float d)
 {
     return(lerp(a, b, Easing.QuintEaseIn(t, d)));
 }
Exemple #3
0
 public static int2 QuintEaseIn(int2 a, int2 b, float t, float d)
 {
     return((int2)lerp(a, b, Easing.QuintEaseIn(t, d)));
 }
Exemple #4
0
 internal static float4 QuintEaseIn(float4 a, float4 b, float t, float d)
 {
     return(lerp(a, b, Easing.QuintEaseIn(t, d)));
 }
Exemple #5
0
 public static int3 QuintEaseIn(int3 a, int3 b, float t, float d)
 {
     return((int3)lerp(a, b, Easing.QuintEaseIn(t, d)));
 }
Exemple #6
0
 internal static int4 QuintEaseIn(int4 a, int4 b, float t, float d)
 {
     return((int4)lerp(a, b, Easing.QuintEaseIn(t, d)));
 }
 public static double3 QuintEaseIn(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.QuintEaseIn(t, d)));
 }