Esempio n. 1
0
 internal static double4 ElasticEaseOutIn(double4 a, double4 b, float t, float d)
 {
     return(lerp(a, b, Easing.ElasticEaseOutIn(t, d)));
 }
Esempio n. 2
0
 internal static quaternion ElasticEaseOutIn(quaternion a, quaternion b, float t, float d)
 {
     return(slerp(a, b, Easing.ElasticEaseOutIn(t, d)));
 }
Esempio n. 3
0
 public static int2 ElasticEaseOutIn(int2 a, int2 b, float t, float d)
 {
     return((int2)lerp(a, b, Easing.ElasticEaseOutIn(t, d)));
 }
Esempio n. 4
0
 internal static float4 ElasticEaseOutIn(float4 a, float4 b, float t, float d)
 {
     return(lerp(a, b, Easing.ElasticEaseOutIn(t, d)));
 }
Esempio n. 5
0
 internal static int4 ElasticEaseOutIn(int4 a, int4 b, float t, float d)
 {
     return((int4)lerp(a, b, Easing.ElasticEaseOutIn(t, d)));
 }
Esempio n. 6
0
 public static double3 ElasticEaseOutIn(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.ElasticEaseOutIn(t, d)));
 }