Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

toRadians()

Example

Translate angles from degrees to radians for various values.

System.out.println(Math.toRadians(57));
System.out.println(Math.toRadians(180));
System.out.println(Math.toRadians(45));
System.out.println(Math.toRadians(-30));
System.out.println(Math.toRadians(340));

 

Definition and Usage

The toRadians() method converts an angle from degrees to radians.

Tip: To convert from radians to degrees, refer to the toDegrees() method.

Syntax

public static double toRadians(double angle)

Parameter Values

Parameter

Description

angle

“Necessary. An angle specified in degrees.”

Technical Details

Returns:

“A double value indicating an angle measured in radians.”

Java Version:

1.2+