Skip to content

Instantly share code, notes, and snippets.

@isoiphone
Created September 12, 2016 18:29
Show Gist options
  • Save isoiphone/33a530a8eab52943df7968ce6dee935a to your computer and use it in GitHub Desktop.
Save isoiphone/33a530a8eab52943df7968ce6dee935a to your computer and use it in GitHub Desktop.
Smoothstep
// so smoooooth.
func smoothstep(x: CGFloat) -> CGFloat {
return x*x*(3-2*x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment