# Round

## Overview

![The Round Node.](/files/tdXXQSMmFAVH3mq7QrS3)

The **Round** **Node** takes a numerical value and *rounds* it with a chosen precision.

The following table shows a few examples:

| `Input`  | `Precision` | `Output` |
| -------- | ----------- | -------- |
| 5.45     | 1           | 5.5      |
| 5.44     | 1           | 5.4      |
| 12.11232 | 3           | 12.112   |
| 12.11232 | 2           | 12.11    |
| 12.11232 | 1           | 12.1     |
| 12.11232 | 0           | 12       |

[**Scope**](/incari-studio/2022.2/toolbox/overview.md#scopes): **Project**, **Scene**, **Function**, **Prefab**.

## Attributes

![The Round Node Attributes.](/files/m6Gy2Npx1t8m5xz3KjYv)

| Attribute   | Type    | Description                                                                |
| ----------- | ------- | -------------------------------------------------------------------------- |
| `Precision` | **Int** | Indicates the maximum number of decimal places that the `Output` can have. |

## Inputs

| Input             | Type      | Description                                                           |
| ----------------- | --------- | --------------------------------------------------------------------- |
| *Pulse Input* (►) | **Pulse** | A standard **Input Pulse**, to trigger the execution of the **Node**. |
| `Input`           | **Float** | The value to be *rounded*.                                            |

## Outputs

| Output             | Type      | Description                                                                                                                            |
| ------------------ | --------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| *Pulse Output* (►) | **Pulse** | A standard **Output Pulse**, to move onto the next **Node** along the **Logic Branch**, once this **Node** has finished its execution. |
| `Output`           | **Float** | The *rounded* value.                                                                                                                   |

## See Also

* [**Floor**](/incari-studio/2022.2/toolbox/math/floor.md)
* [**Ceil**](/incari-studio/2022.2/toolbox/math/ceil.md)

## External Links

* [*Rounding*](https://en.wikipedia.org/wiki/Rounding) on Wikipedia.


---

# 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://docs.incari.com/incari-studio/2022.2/toolbox/math/round.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.
