Summary
Functions based on cubic equations (
x^3).- Assembly
- Animancer
.dll - Namespace
- global
- Base Types
-
- Object
graph BT
Type-->Base0["Object"]
Type["Cubic"]
class Type type-node
Syntax
public static class Cubic
Methods
| Name | Value | Summary |
|---|---|---|
| In |
float |
Interpolates the `value` based on the line
y = x^3.static
|
| In |
float |
A variant of
Cubic.In(System.Single) with a custom range instead of 0 to 1.static
|
| InDerivative |
float |
Returns the derivative of
Cubic.In(System.Single) (y = 3x).static
|
| InDerivative |
float |
A variant of
Cubic.InDerivative(System.Single) with a custom range instead of 0 to 1.static
|
| InOut |
float |
Interpolate using
Cubic.In(System.Single) (0 to 0.5) or Cubic.Out(System.Single) (0.5 to 1).static
|
| InOut |
float |
A variant of
Cubic.InOut(System.Single) with a custom range instead of 0 to 1.static
|
| InOutDerivative |
float |
Returns the derivative of
Cubic.InOut(System.Single).static
|
| InOutDerivative |
float |
A variant of
Cubic.InDerivative(System.Single) with a custom range instead of 0 to 1.static
|
| Out |
float |
Interpolates the `value` based on the line
y = 1 + (x - 1)^3.static
|
| Out |
float |
A variant of
Cubic.Out(System.Single) with a custom range instead of 0 to 1.static
|
| OutDerivative |
float |
Returns the derivative of
Cubic.Out(System.Single) (y = 3 * (x - 1)).static
|
| OutDerivative |
float |
A variant of
Cubic.InDerivative(System.Single) with a custom range instead of 0 to 1.static
|