Skip to content

Instantly share code, notes, and snippets.

@jackd942
Created February 27, 2016 20:54
Show Gist options
  • Save jackd942/2d57ae35c6f34003a862 to your computer and use it in GitHub Desktop.
Save jackd942/2d57ae35c6f34003a862 to your computer and use it in GitHub Desktop.
Extension to CGFloat for use in Devslopes App
//
// CGFloatExt.swift
// devslopes-app
//
// Created by Jack Davis on 2/21/16.
// Copyright © 2016 Devslopes. All rights reserved.
//
import UIKit
extension CGFloat {
func radians() -> CGFloat {
let b = CGFloat(M_PI) * (self/180)
return b
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment