Created
January 29, 2016 14:20
-
-
Save lunelson/170747cf7697ec43674d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
| // ---- | |
| // Sass (v4.0.0.alpha.1) | |
| // MathSass (v0.9.5) | |
| // ---- | |
| @import "math"; | |
| @function mod-scale($base, $exp, $spread) { | |
| @return pow($base, $exp / $spread); | |
| } | |
| .test { | |
| out: mod-scale(1.5, -2, 3); | |
| out: mod-scale(1.5, -1.5, 3); | |
| out: mod-scale(1.5, -1, 3); | |
| out: mod-scale(1.5, 0, 3); | |
| out: mod-scale(1.5, 1, 3); | |
| out: mod-scale(1.5, 2, 3); | |
| out: mod-scale(1.5, 3, 3); | |
| out: mod-scale(1.5, 4, 3); | |
| out: mod-scale(1.5, 5, 3); | |
| out: mod-scale(1.5, 6, 3); | |
| out: mod-scale(1.5, 16, 3); | |
| } |
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
| .test { | |
| out: 0.76314; | |
| out: 0.8165; | |
| out: 0.87358; | |
| out: 1; | |
| out: 1.14471; | |
| out: 1.31037; | |
| out: 1.5; | |
| out: 1.71707; | |
| out: 1.96556; | |
| out: 2.25; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment