public final class PHASECurveType
extends java.lang.Object
Curve types. [@constant] PHASECurveTypeLinear A curve of the form y = x. [@constant] PHASECurveTypeSquared A curve of the form y = x^2. [@constant] PHASECurveTypeInverseSquared A curve of the form y = 1 / x^2. [@constant] PHASECurveTypeCubed A curve of the form y = x^3. [@constant] PHASECurveTypeInverseCubed A curve of the form y = 1 / x^3. [@constant] PHASECurveTypeSine A sine curve. [@constant] PHASECurveTypeInverseSine An inverse sine curve. [@constant] PHASECurveTypeSigmoid A sigmoid curve. Also known as an s-curve, slow at the ends and quick in the middle. [@constant] PHASECurveTypeInverseSigmoid An inverse sigmoid curve. Also known as an inverse s-curve, quick at the ends and slow in the middle.
| Modifier and Type | Field and Description |
|---|---|
static long |
Cubed |
static long |
InverseCubed |
static long |
InverseSigmoid |
static long |
InverseSine |
static long |
InverseSquared |
static long |
Linear |
static long |
Sigmoid |
static long |
Sine |
static long |
Squared |
public static final long Linear
public static final long Squared
public static final long InverseSquared
public static final long Cubed
public static final long InverseCubed
public static final long Sine
public static final long InverseSine
public static final long Sigmoid
public static final long InverseSigmoid