Created
February 15, 2021 08:58
-
-
Save petrosDemetrakopoulos/dfc894cf0be20189e88e653fe4b43d43 to your computer and use it in GitHub Desktop.
getAngle function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func getAngle(angle: Double) -> Double { | |
let deg = 360 - angle.truncatingRemainder(dividingBy: 360) | |
return deg | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment