Radians
Radians( value )
Radians( value )
Radians( value )
Radians( value )
radians( value )
Radians( value )
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
The number representing an angle in degrees that should be converted to radians. |
Examples
The following query returns the radians of 2 degrees:
Value result = await client.Query(
Radians(2)
);
Console.WriteLine(result);
DoubleV(0.03490658503988659)
result, err := client.Query(
f.Radians(2))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
fmt.Println(result)
}
0.03490658503988659
System.out.println(
client.query(
Radians(Value(2))
).get());
0.03490658503988659
client.query(
q.Radians(2)
)
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
0.03490658503988659
result = client.query(
q.radians(2)
)
print(result)
0.03490658503988659
println(Await.result(
client.query(
Radians(2)
),
5.seconds
))
0.03490658503988659
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!