16 lines
242 B
Markdown
16 lines
242 B
Markdown
![]() |
---
|
||
|
title: units
|
||
|
---
|
||
|
|
||
|
Either `metric` (the default) or `imperial`.
|
||
|
|
||
|
Note that this is only used to format the output. Freesewing expects mm.
|
||
|
|
||
|
```js
|
||
|
import brian from "@freesewing/brian";
|
||
|
|
||
|
let pattern = new brian({
|
||
|
units: "imperial"
|
||
|
})
|
||
|
```
|