Skip to content

Instantly share code, notes, and snippets.

View shashankduhan's full-sized avatar
🐷
On it, for quite a long time.

Shashank Duhan shashankduhan

🐷
On it, for quite a long time.
  • India
View GitHub Profile
//: Playground - noun: a place where people can play
import UIKit
import Foundation
import CoreGraphics
private func clamp(v: CGFloat, _ from: CGFloat, _ to: CGFloat) -> CGFloat {
return (v - from) / (to - from)
}