1
0
Fork 0
freesewing/designs/lumira/src/index.mjs

28 lines
2.6 KiB
JavaScript
Raw Normal View History

2023-11-11 00:59:09 +00:00
//
import { Design } from '@freesewing/core'
import { i18n } from '../i18n/index.mjs'
import { data } from '../data.mjs'
// Parts
2023-11-20 05:46:10 +00:00
import { shape } from './shape.mjs'
2023-11-11 00:59:09 +00:00
import { leg } from './leg.mjs'
2023-11-20 05:46:10 +00:00
import { gusset } from './gusset.mjs'
2023-11-24 18:57:55 +00:00
import { waistband } from './waistband.mjs'
2023-11-11 00:59:09 +00:00
// Create new design
const Lumira = new Design({
data,
2023-12-12 01:36:23 +00:00
parts: [shape, gusset, leg, waistband],
2023-11-11 00:59:09 +00:00
})
// Named exports
2023-12-12 01:36:23 +00:00
export { i18n, Lumira, shape, gusset, leg, waistband }
2023-11-15 07:13:05 +00:00
2023-11-27 00:39:47 +00:00
// http://localhost:8001/new/lumira#view=%22inspect%22&settings=%7B%22measurements%22%3A%7B%22waist%22%3A880%2C%22waistBack%22%3A420%2C%22hips%22%3A920%2C%22seat%22%3A965%2C%22seatBack%22%3A490%2C%22upperLeg%22%3A580%2C%22knee%22%3A395%2C%22ankle%22%3A230%2C%22heel%22%3A340%2C%22inseam%22%3A800%2C%22crossSeam%22%3A800%2C%22crossSeamFront%22%3A380%2C%22waistToFloor%22%3A1100%2C%22waistToKnee%22%3A610%2C%22waistToUpperLeg%22%3A335%2C%22waistToSeat%22%3A210%2C%22waistToHips%22%3A80%7D%2C%22options%22%3A%7B%22cyclingChamois%22%3Atrue%2C%22waistband%22%3Atrue%7D%2C%22sabool%22%3A1%2C%22sa%22%3A10%2C%22embed%22%3Afalse%7D
2023-11-15 07:13:05 +00:00
// http://localhost:8000/new/lumira#view=%22inspect%22&settings=%7B%22measurements%22%3A%7B%22waist%22%3A960%2C%22waistBack%22%3A485%2C%22hips%22%3A885%2C%22seat%22%3A965%2C%22seatBack%22%3A490%2C%22upperLeg%22%3A570%2C%22knee%22%3A415%2C%22ankle%22%3A230%2C%22heel%22%3A370%2C%22inseam%22%3A800%2C%22crossSeam%22%3A800%2C%22crossSeamFront%22%3A380%2C%22waistToFloor%22%3A1100%2C%22waistToKnee%22%3A610%2C%22waistToUpperLeg%22%3A335%2C%22waistToSeat%22%3A230%2C%22waistToHips%22%3A120%7D%2C%22units%22%3A%22metric%22%7D
2023-11-20 05:46:10 +00:00
// http://localhost:8000/new/lumira#view=%22inspect%22&settings=%7B%22measurements%22%3A%7B%22waist%22%3A240%2C%22waistBack%22%3A120%2C%22hips%22%3A220%2C%22seat%22%3A240%2C%22seatBack%22%3A120%2C%22upperLeg%22%3A140%2C%22knee%22%3A105%2C%22ankle%22%3A57.5%2C%22heel%22%3A92.5%2C%22inseam%22%3A200%2C%22crossSeam%22%3A200%2C%22crossSeamFront%22%3A95%2C%22waistToFloor%22%3A275%2C%22waistToKnee%22%3A152.5%2C%22waistToUpperLeg%22%3A82.5%2C%22waistToSeat%22%3A57.5%2C%22waistToHips%22%3A30%7D%2C%22units%22%3A%22metric%22%2C%22embed%22%3Afalse%7D
// Nina: http://localhost:8001/new/lumira#view=%22inspect%22&settings=%7B%22measurements%22%3A%7B%22waist%22%3A680%2C%22waistBack%22%3A340%2C%22hips%22%3A790%2C%22seat%22%3A900%2C%22seatBack%22%3A490%2C%22upperLeg%22%3A530%2C%22knee%22%3A365%2C%22ankle%22%3A215%2C%22heel%22%3A330%2C%22inseam%22%3A690%2C%22crossSeam%22%3A730%2C%22crossSeamFront%22%3A340%2C%22waistToFloor%22%3A990%2C%22waistToKnee%22%3A580%2C%22waistToUpperLeg%22%3A300%2C%22waistToSeat%22%3A180%2C%22waistToHips%22%3A70%7D%2C%22units%22%3A%22metric%22%7D