LinearShaper

Shaper which has a direct relationship between in and out.

Use in SIGMOID mode and use setTransitionPoint() in order to create double linear shaper. May be referred to as Tween.LINEAR for use in setEasing().

Constructor
LinearShaper()
LinearShaper( shapeMode )
LinearShaper( shapeMode, transition )
LinearShaper( shapeMode, transitionX, transitionY )
Parameters
shapeMode
int: a shaping mode such as Shaper.SIGMOID
transitionX
float: sets the transition point in the x dimension for SIGMOID and SEAT
transitionY
float: sets the transition point in the f(x) dimension, for skewing the transition
Implementation
f(x){
  x;
}
Related
Shaper