- AnimateMate (Micro Animations)
- Craft (Suite)
- Picnic (Live collaboration) [In alpha]
- Zeplin (Style Guide / Dev Handoff)
- Sketch Measure (Measuring Documentation)
- Runner (Keyboard controls)
- Sketch Distributor (Alignment)
- Pixel Perfecter (Alignment)
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
/** | |
* Calculate a 2:1 iso grid for specific sizes. | |
* | |
* @author Henning Pohlmeyer | |
* | |
* @param {number} smallestValue The smalles value to use in the grid. | |
* @return {object} The grid spacing value and rotate and | |
* shear values for each plane. | |
*/ | |
function calculateIsoGrid(smallestValue) { |
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
// Line Interpolation | |
function createLineInterpolationFunction(p1, p2) { | |
const slope = (p2.y - p1.y) / (p2.x - p1.x); | |
const yIntercept = p1.y - (slope * p1.x); | |
return (x) => slope * x + yIntercept; | |
} | |
// Example | |
const getY = createLineInterpolationFunction({ x: 200, y: 20}, { x: 1440, y: 60 }); | |
const point = { x: 100, y: getY(100) }; |
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
[user] | |
name = Henning Pohlmeyer | |
email = [email protected] | |
[alias] | |
# Basics | |
co = checkout | |
ci = commit | |
cm = commit -m | |
st = status | |
br = branch |
OlderNewer