public static EasyTransitionAnimationWithKindFluentContext <Vector3> From(this EasyTransitionAnimationWithKindFluentContext <Vector3> animationFluentContext, float value)
 {
     animationFluentContext.From(new Vector3(value, value, value));
     return(animationFluentContext);
 }
 public static EasyTransitionAnimationWithKindFluentContext <Vector3> To(this EasyTransitionAnimationWithKindFluentContext <Vector3> animationFluentContext, float x, float y, float z)
 {
     animationFluentContext.To(new Vector3(x, y, z));
     return(animationFluentContext);
 }
 public static EasyTransitionAnimationWithKindFluentContext <Vector2> From(this EasyTransitionAnimationWithKindFluentContext <Vector2> animationFluentContext, float x, float y)
 {
     animationFluentContext.From(new Vector2(x, y));
     return(animationFluentContext);
 }