Applies smoothstep function to the percentage value * @param {number} percent * @return {number} * @memberof Math
(percent)
| 189 | * @return {number} |
| 190 | * @memberof Math */ |
| 191 | function smoothStep(percent) { return percent * percent * (3 - 2 * percent); } |
| 192 | |
| 193 | /** Checks if the value passed in is a power of two |
| 194 | * @param {number} value |
no outgoing calls
no test coverage detected