1
0
Fork 0
freesewing/markdown/dev/reference/settings/measurements/en.md

42 lines
702 B
Markdown
Raw Normal View History

2022-02-19 08:04:25 +01:00
---
title: measurements
---
The `measurements` settings should hold an object with the
2022-02-19 08:04:25 +01:00
measurements to draft the pattern for.
## Signature
```js
const settings = {
Object measurements={
String measurementName: Number measurementValue,
...
}
}
```
## Example
```js
import { Aaron } from "@freesewing/aaron"
const pattern = new Aaron({
measurements: {
biceps: 254,
chest: 871,
hpsToWaistBack: 380,
hips: 847,
neck: 320,
shoulderSlope: 13,
shoulderToShoulder: 399,
waistToHips: 120,
}
})
```
## Notes
Measurements should always be specified in millimeter, unless it's an angle
measurement (like `shoulderSlope`) which should be provided in degrees.