1
0
Fork 0

Merge branch 'freesewing:develop' into 2027-title-timestamp

This commit is contained in:
BenJamesBen 2022-08-04 11:27:43 -07:00 committed by GitHub
commit 336fd7efe6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2384 changed files with 32482 additions and 7187 deletions

View file

@ -42,4 +42,3 @@ you can do so by passing `false` to the macro:
```js
macro('cutonfold', false)
```

View file

@ -32,4 +32,3 @@ you can do so by passing `false` to the macro:
```js
macro('grainline', false)
```

View file

@ -25,11 +25,9 @@ macro('miniscale', {
## Removing the miniscal
If you inherit a part with a miniscale on it and you'd like to remove all points and paths
If you inherit a part with a miniscale on it and you'd like to remove all points and paths
generated by the miniscale macro, you can do so by passing `false` to the macro:
```js
macro('miniscale', false)
```

View file

@ -29,10 +29,9 @@ macro('scalebox', {
## Removing the scalebox
If you inherit a part with a scalebox on it and you'd like to remove all points and paths
If you inherit a part with a scalebox on it and you'd like to remove all points and paths
generated by the scalebox macro, you can do so by passing `false` to the macro:
```js
macro('scalebox', false)
```

View file

@ -8,7 +8,7 @@ Path path.noop(string id)
Adds a placeholder path operation.
A `noop` operation does nothing, but is intended to be replaced later
A `noop` operation does nothing, but is intended to be replaced later
with [`Path.insop()`](/reference/api/path/insop).
<Tip compact>This is often used to insert darts into a path</Tip>