1
0
Fork 0

feat(markdown): Ported code howtos to v3

This commit is contained in:
Joost De Cock 2022-10-12 14:42:45 +02:00
parent d1edf93750
commit af99d3e8c0
25 changed files with 451 additions and 636 deletions

View file

@ -1,18 +1,7 @@
---
title: Share dimensions between pattern parts
for: developers
about: Shows how to share dimensions between similar pattern parts
---
<Note>
##### See this example in our source code
- [designs/aaron/src/shared.js](https://github.com/freesewing/freesewing/blob/3ca5d0edfe54c7ac20aaf3af2f3544aee72f9b99/designs/aaron/src/shared.js)
- [designs/aaron/src/front.js](https://github.com/freesewing/freesewing/blob/3ca5d0edfe54c7ac20aaf3af2f3544aee72f9b99/designs/aaron/src/front.js#L160)
</Note>
When you have different pattern parts that look similar -- like the front
and back of a garment -- you may find that there's a lot of dimensions
shared between them.
@ -20,7 +9,7 @@ shared between them.
The example below is from Aaron where dimensions are shared between
the back and front part.
Aaron has a file called `shared.js` that looks like this:
Aaron has a file called `shared.mjs` that looks like this:
```js
export function dimensions(macro, points, sa) {
@ -33,7 +22,8 @@ export function dimensions(macro, points, sa) {
}
```
In both `front.js` and `back.js` we use this code to add these shared dimensions:
In both `front.mjs` and `back.mjs` we use this code to add these shared
dimensions:
```js
import { dimensions } from './shared'
@ -42,13 +32,6 @@ import { dimensions } from './shared'
if (paperless) {
dimensions(macro, points, sa)
// ... specific dimensions
// ... dimensions specific to this part
}
```
<Note>
Since our shared dimension method is a so-called _named export_ we need to
import it with the syntax you see above.
</Note>