a
(float, default: 0): The angle in degrees to be converted to radians.result
(float): The equivalent angle in radians.a
input.result
output.toRadiansNode
) takes an input angle of 45 degrees and converts it to radians.toRadiansNode
is connected to the input of a Sin node (sinNode
), which calculates the sine of the angle in radians.sinNode
is sent to an Output node (outputNode
) to display the result.