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