graphics_utils - Use correct parameter variable

pull/2522/head
Martin Boonk 2023-01-22 10:05:21 +01:00
parent 7fb4c6f786
commit bf5c44c922
1 changed files with 1 additions and 1 deletions

View File

@ -31,5 +31,5 @@ exports.degreesToRadians = function(degrees){
}
exports.radiansToDegrees = function(radians){
return 180/Math.PI * degrees;
return 180/Math.PI * radians;
}