1
0
Fork 0

Updates to pattern design tutorial for clarity and flow

This commit is contained in:
Natalia Sayang 2024-03-08 20:01:45 +00:00
parent 1e10781af6
commit d4919040c2
4 changed files with 9 additions and 7 deletions

View file

@ -1,6 +1,6 @@
---
title: Drawing the straps
order: 230
order: 93
---
All we have to do now is flip a bunch of points on the other side,

View file

@ -43,3 +43,5 @@ Depending on the choice you made, you will need to edit files in a different fol
- Edit files in `design/tutorial` if you are using the **Tutorial** template
You can choose either, or even switch back and forth between both.
To follow along step-by-step with the tutorial, go to the `design/from-scratch` folder.

View file

@ -27,7 +27,7 @@ const FromScratch = new Design({
name: 'fromScratch',
version: '0.0.1',
},
parts: [ bib ],
parts: [bib],
})
export { bib, FromScratch, i18n }
@ -82,7 +82,7 @@ If you are not familiar with this syntax, you'll get the hang of it soon enough.
## Design constructor
finally the most interesting part of this file is the middle part where we are
Finally, the most interesting part of this file is the middle part where we are
creating a new design:
```src/index.mjs
@ -91,7 +91,7 @@ const FromScratch = new Design({
name: 'fromScratch',
version: '0.0.1',
},
parts: [ bib ],
parts: [bib],
})
```
@ -104,14 +104,14 @@ to be more accurate, that you can use with the `new` keyword.
It's a convention that constructor names start with an **C**apital letter.
</Tip>
We are passing some info to a this `Design` function, but the `data` we are
We are passing some info to this `Design` function, but the `data` we are
passing is optional. If we strip that away for a moment, and don't bother
assigning the result to a variable, we reveal the essence of what it takes to
create a new FreeSewing design:
```src/index.mjs
new Design({
parts: [ bib ],
parts: [bib],
})
```

View file

@ -86,4 +86,4 @@ This structure of putting the draft method at the top of the file and
the part object at the bottom is a bit of a convention in FreeSewing.
</Note>
We'll take a look at our part's *draft method* soon. For now, let's look at adding measurements to our part.