rename ln function to log

This commit is contained in:
ngradwohl 2019-07-23 08:00:07 +02:00
parent b9b1ef1bc6
commit 02971c6588

View File

@ -226,7 +226,7 @@ function Library (ronin) {
this.cos = Math.cos
this.ln = Math.log // caclulates on the base of e
this.log = Math.log // caclulates on the base of e
this.pow = (a, b) => { // calculates a^b
return Math.pow(a, b)