Uses of Class
com.badlogic.gdx.math.Interpolation

Packages that use Interpolation
com.badlogic.gdx.math   
com.badlogic.gdx.scenes.scene2d.actions   
com.badlogic.gdx.scenes.scene2d.ui   
 

Uses of Interpolation in com.badlogic.gdx.math
 

Subclasses of Interpolation in com.badlogic.gdx.math
static class Interpolation.Bounce
           
static class Interpolation.BounceIn
           
static class Interpolation.BounceOut
           
static class Interpolation.Elastic
           
static class Interpolation.ElasticIn
           
static class Interpolation.ElasticOut
           
static class Interpolation.Exp
           
static class Interpolation.ExpIn
           
static class Interpolation.ExpOut
           
static class Interpolation.Pow
           
static class Interpolation.PowIn
           
static class Interpolation.PowOut
           
static class Interpolation.Swing
           
static class Interpolation.SwingIn
           
static class Interpolation.SwingOut
           
 

Fields in com.badlogic.gdx.math declared as Interpolation
static Interpolation Interpolation.bounce
           
static Interpolation Interpolation.bounceIn
           
static Interpolation Interpolation.bounceOut
           
static Interpolation Interpolation.circle
           
static Interpolation Interpolation.circleIn
           
static Interpolation Interpolation.circleOut
           
static Interpolation Interpolation.exp10
           
static Interpolation Interpolation.exp10In
           
static Interpolation Interpolation.exp10Out
           
static Interpolation Interpolation.exp5
           
static Interpolation Interpolation.exp5In
           
static Interpolation Interpolation.exp5Out
           
static Interpolation Interpolation.fade
           
static Interpolation Interpolation.linear
           
static Interpolation Interpolation.sine
           
static Interpolation Interpolation.sineIn
           
static Interpolation Interpolation.sineOut
           
static Interpolation Interpolation.swing
           
static Interpolation Interpolation.swingIn
           
static Interpolation Interpolation.swingOut
           
 

Methods in com.badlogic.gdx.math with parameters of type Interpolation
 T Vector.interpolate(T target, float alpha, Interpolation interpolator)
          Interpolates between this vector and the given target vector by alpha (within range [0,1]) using the given Interpolation method.
 Vector2 Vector2.interpolate(Vector2 target, float alpha, Interpolation interpolator)
           
 Vector3 Vector3.interpolate(Vector3 target, float alpha, Interpolation interpolator)
           
 

Uses of Interpolation in com.badlogic.gdx.scenes.scene2d.actions
 

Methods in com.badlogic.gdx.scenes.scene2d.actions that return Interpolation
 Interpolation TemporalAction.getInterpolation()
           
 

Methods in com.badlogic.gdx.scenes.scene2d.actions with parameters of type Interpolation
static AlphaAction Actions.alpha(float a, float duration, Interpolation interpolation)
          Transitions from the alpha at the time this action starts to the specified alpha.
static ColorAction Actions.color(Color color, float duration, Interpolation interpolation)
          Transitions from the color at the time this action starts to the specified color.
static AlphaAction Actions.fadeIn(float duration, Interpolation interpolation)
          Transitions from the alpha at the time this action starts to an alpha of 1.
static AlphaAction Actions.fadeOut(float duration, Interpolation interpolation)
          Transitions from the alpha at the time this action starts to an alpha of 0.
static MoveByAction Actions.moveBy(float amountX, float amountY, float duration, Interpolation interpolation)
           
static MoveToAction Actions.moveTo(float x, float y, float duration, Interpolation interpolation)
           
static RotateByAction Actions.rotateBy(float rotationAmount, float duration, Interpolation interpolation)
           
static RotateToAction Actions.rotateTo(float rotation, float duration, Interpolation interpolation)
           
static ScaleByAction Actions.scaleBy(float amountX, float amountY, float duration, Interpolation interpolation)
           
static ScaleToAction Actions.scaleTo(float x, float y, float duration, Interpolation interpolation)
           
 void TemporalAction.setInterpolation(Interpolation interpolation)
           
static SizeByAction Actions.sizeBy(float amountX, float amountY, float duration, Interpolation interpolation)
           
static SizeToAction Actions.sizeTo(float x, float y, float duration, Interpolation interpolation)
           
 

Constructors in com.badlogic.gdx.scenes.scene2d.actions with parameters of type Interpolation
TemporalAction(float duration, Interpolation interpolation)
           
 

Uses of Interpolation in com.badlogic.gdx.scenes.scene2d.ui
 

Methods in com.badlogic.gdx.scenes.scene2d.ui with parameters of type Interpolation
 void ProgressBar.setAnimateInterpolation(Interpolation animateInterpolation)
          Sets the interpolation to use for ProgressBar.setAnimateDuration(float).
 



Copyright © 2014. All Rights Reserved.