1
0
Fork 0

feat(config-helpers): Renamed snapseries to config-helpers

It would be useful to have a place where we can place methods
like the pctBasedOn method that we now import from core, even though
it has nothing to do with core.

So I've decided to rename this packet since it's essentially also
things that facilitate pattern configuration (files).

Since this is a very new package, and I am 100% certain that we
(FreeSewing itself) are the only ones using it, no need to major
bump this. The most recent snapseries package will remain available
for people who want to use it.

I'll update all patterns accordingly.
This commit is contained in:
Joost De Cock 2022-06-12 23:49:52 +02:00
parent b0aa9f3895
commit 447970c689
6 changed files with 70 additions and 32 deletions

View file

@ -0,0 +1,51 @@
/*
* Snap series
* ==============================
*/
// Common width for elastics
export const elastics = {
metric: [3.5, 5, 10, 12, 20, 25, 30, 40, 50, 60, 80, 100, 120],
imperial: [
3.175, 6.35, 9.525, 12.7, 15.875, 19.05, 25.4, 31.75, 38.1, 44.45, 50.8, 76.2, 101.6, 127,
],
}
// Common length for zippers
export const zippers = {
metric: [
80, 100, 120, 140, 150, 160, 180, 200, 220, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700,
750, 800, 900, 1000, 1100, 1200,
],
imperial: 25.4,
}
// Snap to small steps (~1mm)
export const smallsteps = {
metric: 1,
imperial: 0.79375, // 1/32 inch
}
// Snap to medium steps (~5mm)
export const steps = {
metric: 5,
imperial: 3.175, // 1/8 inch
}
// Snap to big steps (~10mm)
export const bigsteps = {
metric: 10,
imperial: 12.7, // 1/2 inch
}
/*
* Config helper methods
* ==============================
*/
export function pctBasedOn(measurement) {
return {
toAbs: (val, { measurements }) => measurements[measurement] * val,
fromAbs: (val, { measurements }) => Math.round((10 * val) / measurements[measurement]) / 10,
}
}