Documentation
¶
Index ¶
- Variables
- func Cube(t float32) float32
- func Cube2(t float32) float32
- func InCubic(t float32) float32
- func InOutCubic(t float32) float32
- func InOutQuad(t float32) float32
- func InOutQuart(t float32) float32
- func InOutQuint(t float32) float32
- func InQuad(t float32) float32
- func InQuart(t float32) float32
- func InQuint(t float32) float32
- func Linear(t float32) float32
- func Logarithm(t float32) float32
- func OutCubic(t float32) float32
- func OutQuad(t float32) float32
- func OutQuart(t float32) float32
- func OutQuint(t float32) float32
- func Sin(t float32) float32
- func Sqr(t float32) float32
- func Sqrt(t float32) float32
- func Wobble(t float32) float32
- type Func
Constants ¶
This section is empty.
Variables ¶
View Source
var Funcs = []Func{ Func{Name: "Linear", Ease: Linear}, Func{Name: "InQuad", Ease: InQuad}, Func{Name: "OutQuad", Ease: OutQuad}, Func{Name: "InOutQuad", Ease: InOutQuad}, Func{Name: "InCubic", Ease: InCubic}, Func{Name: "OutCubic", Ease: OutCubic}, Func{Name: "InOutCubic", Ease: InOutCubic}, Func{Name: "InQuart", Ease: InQuart}, Func{Name: "OutQuart", Ease: OutQuart}, Func{Name: "InOutQuart", Ease: InOutQuart}, Func{Name: "InQuint", Ease: InQuint}, Func{Name: "OutQuint", Ease: OutQuint}, Func{Name: "InOutQuint", Ease: InOutQuint}, Func{Name: "Logarithm", Ease: Logarithm}, Func{Name: "Sin", Ease: Sin}, Func{Name: "Sqr", Ease: Sqr}, Func{Name: "Sqrt", Ease: Sqrt}, Func{Name: "Wobble", Ease: Wobble}, Func{Name: "Cube", Ease: Cube}, Func{Name: "Cube2", Ease: Cube2}, }
Functions ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.