1
0
Fork 0
freesewing/markdown/dev/reference/macros/ld/en.md
2022-09-30 15:34:59 +02:00

1.5 KiB

title
ld

The ld macro adds a linear dimension to your pattern.
It is provided by the dimension plugin.

Signature

macro('ld', {
  Number d,
  String id,
  Point from,
  Boolean noEndtMarker,
  Boolean noStartMarker,
  String text,
  Point to,
})

Example

```js ({ Point, macro, part }) => {

macro('ld', { from: new Point(0,0), to: new Point(100,20), d:15, })

return part }

</Example>

## Configuration

| Property        | Default | Type                | Description |
|-----------------|---------|---------------------|-------------|
| `from`          |         | [Point](/reference/api/point) | The startpoint of the dimension |
| `to`            |         | [Point](/reference/api/point) | The endpoint of the dimension |
| `d`             | 0       | Number              | The offset at which to draw the dimension |
| `id`            | auto-assigned | String | A custom ID under wich paths and points will be created |
| `text`          | Linear distance   | Number    | The text to go on the dimension if not the from-to linear distance |
| `noStartMarker` | `false` | Boolean             | Whether to not draw a start marker |
| `noEndMarker`  | `false` | Boolean             | Whether to not draw an end marker |

## Notes

Setting a custom ID will:

- Allow removal of the dimension with [the `rmd` macro](/reference/macros/rmd)
- Prevent removal of the dimension with [the `rmad` macro](/reference/macros/rmad/)