# Radian-Degree Converter

## Overview

![The Radian-Degree Converter Node.](/files/84JSWyLBpalyWMEbmcED)

**Radian-Degree Converter** takes a single **Float** value, representing an angle, in degrees (°) or radians (rad), and converts it from one unit to the other.

The equation used by the **Node** is determined by the `Mode` **Attribute**. The equations are:

* `Radian_to_Degree`: *D* = *R* x 180/π.
* `Degree_to_Radian`: *R* = *D* x π/180,

where *R* is an angle in radians (rad) and *D* is an angle in degrees (°).

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

## Attributes

![The Radian-Degree Converter Node Attributes.](/files/Yte8scx0g1HhjF0ntf97)

| Attribute       | Type          | Description                                                                      |
| --------------- | ------------- | -------------------------------------------------------------------------------- |
| `Mode`          | **Drop-down** | Determines which conversion equation is used.                                    |
| `Default Value` | **Float**     | The default value of `Input`, if no value is provided in the `Input` **Socket**. |

## Inputs

| Input             | Type      | Description                                                           |
| ----------------- | --------- | --------------------------------------------------------------------- |
| *Pulse Input* (►) | **Pulse** | A standard input **Pulse**, to trigger the execution of the **Node**. |
| `Input`           | **Float** | The angle to convert.                                                 |

## 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 converted value.                                                                                                                   |

## See Also

* [**Trigonometry**](/incari-studio/2023.1/toolbox/math/trigonometry.md)

## External Links

* [*Trigonometry*](https://www.khanacademy.org/math/trigonometry) on Khan Academy.
* [*Radians*](https://www.mathsisfun.com/geometry/radians.html) on Maths is Fun.
* [*Degrees*](https://www.mathsisfun.com/geometry/degrees.html) on Maths is Fun.


---

# 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/2023.1/toolbox/math/trigonometry/radian-degree-converter.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.
