2021-10-17 18:26:00 +02:00
|
|
|
---
|
|
|
|
title: vd
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2021-10-17 18:26:00 +02:00
|
|
|
The `vd` macro adds a *vertical dimension* to your pattern.
|
2021-08-25 16:09:31 +02:00
|
|
|
It is provided by the [dimension plugin](/reference/plugins/dimension/).
|
|
|
|
|
2022-01-18 10:13:16 +01:00
|
|
|
<Example part="point_dy">
|
|
|
|
An example of a vertical dimension
|
|
|
|
</Example>
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
```js
|
|
|
|
macro('vd', {
|
|
|
|
from: points.from,
|
|
|
|
to: points.to,
|
|
|
|
x: 25
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2021-10-17 18:26:00 +02:00
|
|
|
| Property | Default | Type | Description |
|
2021-08-25 16:09:31 +02:00
|
|
|
|----------------:|---------|---------------------|-------------|
|
|
|
|
| `from` | | [Point](/reference/api/point) | The startpoint of the dimension |
|
|
|
|
| `to` | | [Point](/reference/api/point) | The endpoint of the dimension |
|
|
|
|
| `x` | | Number | The X-value at which to draw the dimension |
|
|
|
|
| `text` | Vertical distance | Number | The text to go on the dimension if not the from-to vertical distance |
|
|
|
|
| `id` | auto-assigned | String | A custom ID under wich paths and points will be created |
|
|
|
|
| `noStartMarker` | `false` | Boolean | Whether to not draw a start marker |
|
|
|
|
| `noEndMarker` | `false` | Boolean | Whether to not draw an end marker |
|
|
|
|
|
|
|
|
<Note>
|
|
|
|
|
|
|
|
Setting a custom ID will:
|
|
|
|
|
2021-10-17 18:26:00 +02:00
|
|
|
- Allow removal of the dimension with [the `rmd` macro](/reference/macros/rmd)
|
|
|
|
- Prevent removal of the dimension with [the `rmad` macro](/reference/macros/rmad/)
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
</Note>
|
2021-10-17 18:26:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
|