> For the complete documentation index, see [llms.txt](https://lib.wiki.teamresourceful.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lib.wiki.teamresourceful.com/welcome/highlights/highlight.md).

# Highlight

Highlights are a simple json they only contain one thing a list of <mark style="color:red;">`line`</mark>&#x20;

A line is an array of 6 floats with the first 3 being for the first point and the second 3 being for the second point in the line.

Line floats are not Minecraft pixels so if you want a Minecraft pixel position divide it by 16 to get the value for the line.

{% tabs %}
{% tab title="Example" %}
This example is to have a single line from the bottom left back corner going to the top right front corner.

{% code title="corner\_line.json" lineNumbers="true" %}

```json
{
    "lines": [
        [0, 0, 0, 1, 1, 1]
    ]
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
