Radians

This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics.

Radians( value )
Radians( value )
Radians( value )
radians( value )
Radians( value )

Description

The Radians function translates the specified number from degrees to radians.

Parameters

Parameter Type Definition and Requirements

value

Number

The Number representing an angle in degrees that should be converted to radians.

Returns

A Number which is the given angle measured in radians.

Examples

The following query returns the radians of 2 degrees:

try
{
    Value result = await client.Query(
        Radians(2)
    );

    Console.WriteLine(result);
}
catch (Exception e)
{
    Console.WriteLine($"ERROR: {e.Message}");
}
DoubleV(0.03490658503988659)
result, err := client.Query(
	f.Radians(2))

if err != nil {
	fmt.Fprintln(os.Stderr, err)
} else {
	fmt.Println(result)
}
0.03490658503988659
client.query(
  q.Radians(2)
)
.then((ret) => console.log(ret))
.catch((err) => console.error(
  'Error: [%s] %s: %s',
  err.name,
  err.message,
  err.errors()[0].description,
))
0.03490658503988659
result = client.query(
  q.radians(2)
)
print(result)
0.03490658503988659
Radians(2)
0.03490658503988659
Query metrics:
  •    bytesIn:  13

  •   bytesOut:  32

  • computeOps:   1

  •    readOps:   0

  •   writeOps:   0

  •  readBytes:   0

  • writeBytes:   0

  •  queryTime: 3ms

  •    retries:   0

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!