# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://lib.wiki.teamresourceful.com/welcome/highlights/highlight.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
