5 lines
85 B
JavaScript
5 lines
85 B
JavaScript
function circIn(t) {
|
|
return 1.0 - Math.sqrt(1.0 - t * t)
|
|
}
|
|
|
|
module.exports = circIn |