Esempio n. 1
0
 internal static float ElasticEaseInOut(float a, float b, float t, float d)
 {
     return(lerp(a, b, Easing.ElasticEaseInOut(t, d)));
 }
Esempio n. 2
0
 public static double3 QuintEaseInOut(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.QuintEaseInOut(t, d)));
 }
Esempio n. 3
0
 internal static float QuintEaseInOut(float a, float b, float t, float d)
 {
     return(lerp(a, b, Easing.QuintEaseInOut(t, d)));
 }
Esempio n. 4
0
 internal static float2 Linear(float2 a, float2 b, float t, float d)
 {
     return(lerp(a, b, Easing.Linear(t, d)));
 }
Esempio n. 5
0
 internal static float2 BounceEaseOutIn(float2 a, float2 b, float t, float d)
 {
     return(lerp(a, b, Easing.BounceEaseOutIn(t, d)));
 }
Esempio n. 6
0
 internal static float ExpoEaseOut(float a, float b, float t, float d)
 {
     return(lerp(a, b, Easing.ExpoEaseOut(t, d)));
 }
Esempio n. 7
0
 internal static float2 CubicEaseIn(float2 a, float2 b, float t, float d)
 {
     return(lerp(a, b, Easing.CubicEaseIn(t, d)));
 }
Esempio n. 8
0
 internal static int4 QuintEaseIn(int4 a, int4 b, float t, float d)
 {
     return((int4)lerp(a, b, Easing.QuintEaseIn(t, d)));
 }
Esempio n. 9
0
 internal static int4 Linear(int4 a, int4 b, float t, float d)
 {
     return((int4)lerp(a, b, Easing.Linear(t, d)));
 }
Esempio n. 10
0
 public static double3 BackEaseOutIn(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.BackEaseOutIn(t, d)));
 }
Esempio n. 11
0
 public static double3 ExpoEaseOut(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.ExpoEaseOut(t, d)));
 }
Esempio n. 12
0
 public static double3 BounceEaseInOut(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.BounceEaseInOut(t, d)));
 }
Esempio n. 13
0
 public static double3 ElasticEaseInOut(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.ElasticEaseInOut(t, d)));
 }
Esempio n. 14
0
 public static double3 Linear(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.Linear(t, d)));
 }
Esempio n. 15
0
 internal static float BounceEaseInOut(float a, float b, float t, float d)
 {
     return(lerp(a, b, Easing.BounceEaseInOut(t, d)));
 }
Esempio n. 16
0
 internal static int4 ElasticEaseInOut(int4 a, int4 b, float t, float d)
 {
     return((int4)lerp(a, b, Easing.ElasticEaseInOut(t, d)));
 }
Esempio n. 17
0
 internal static float BackEaseOutIn(float a, float b, float t, float d)
 {
     return(lerp(a, b, Easing.BackEaseOutIn(t, d)));
 }
Esempio n. 18
0
 internal static int4 BounceEaseInOut(int4 a, int4 b, float t, float d)
 {
     return((int4)lerp(a, b, Easing.BounceEaseInOut(t, d)));
 }
Esempio n. 19
0
 internal static float2 SineEaseOut(float2 a, float2 b, float t, float d)
 {
     return(lerp(a, b, Easing.SineEaseOut(t, d)));
 }
Esempio n. 20
0
 internal static int4 BackEaseOutIn(int4 a, int4 b, float t, float d)
 {
     return((int4)lerp(a, b, Easing.BackEaseOutIn(t, d)));
 }
Esempio n. 21
0
 internal static float2 QuintEaseOutIn(float2 a, float2 b, float t, float d)
 {
     return(lerp(a, b, Easing.QuintEaseOutIn(t, d)));
 }
Esempio n. 22
0
 internal static int4 ExpoEaseOut(int4 a, int4 b, float t, float d)
 {
     return((int4)lerp(a, b, Easing.ExpoEaseOut(t, d)));
 }
Esempio n. 23
0
 internal static float2 ElasticEaseOutIn(float2 a, float2 b, float t, float d)
 {
     return(lerp(a, b, Easing.ElasticEaseOutIn(t, d)));
 }
Esempio n. 24
0
 internal static float SineEaseIn(float a, float b, float t, float d)
 {
     return(lerp(a, b, Easing.SineEaseIn(t, d)));
 }
Esempio n. 25
0
 internal static float2 BackEaseInOut(float2 a, float2 b, float t, float d)
 {
     return(lerp(a, b, Easing.BackEaseInOut(t, d)));
 }
Esempio n. 26
0
 public static double3 CubicEaseIn(double3 a, double3 b, float t, float d)
 {
     return(lerp(a, b, Easing.CubicEaseIn(t, d)));
 }