Revert "Introduced libspiro-js into Iosevka."

This reverts commit 14acdd1f1e.
This commit is contained in:
be5invis 2015-08-17 08:01:37 +08:00
parent 14acdd1f1e
commit 5230201464
7 changed files with 107 additions and 284 deletions

View file

@ -3,8 +3,7 @@ exports.transformPoint = function(tfm, pt){
x : pt.x * tfm.xx + pt.y * tfm.yx + tfm.x,
y : pt.x * tfm.xy + pt.y * tfm.yy + tfm.y,
onCurve: pt.onCurve,
cubic: pt.cubic,
subdivided: pt.subdivided
cubic: pt.cubic
}
}
exports.inverse = function(tfm){
@ -26,7 +25,6 @@ exports.untransform = function(tfm, pt){
x : (xx * tfm.yy - yy * tfm.yx) / denom,
y : (yy * tfm.xx - xx * tfm.xy) / denom,
onCurve: pt.onCurve,
cubic: pt.cubic,
subdivided: pt.subdivided
cubic: pt.cubic
}
}