Last active
January 7, 2019 14:39
-
-
Save andrevidela/ce1330b6c7e409afcb890a1fc837673f to your computer and use it in GitHub Desktop.
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
let constOne = Linear(x: 0, c: 1) | |
let constThree = Linear(x: 0, c: 3) | |
let verySteep = Linear(x: 200, c: -5) | |
let moveUpByThree = { $0 + constThree } | |
constOne + Linear.addId == constOne | |
moveUpByThree(constOne) | |
285 ◊ verySteep |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment