mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 20:56:26 +00:00
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 |