armory/blender/arm/logicnode/math/LN_deg_to_rad.py

15 lines
409 B
Python
Raw Normal View History

2018-06-15 10:49:14 +02:00
from arm.logicnode.arm_nodes import *
class DegToRadNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Converts degrees to radians."""
2018-06-15 10:49:14 +02:00
bl_idname = 'LNDegToRadNode'
bl_label = 'Deg to Rad'
arm_version = 1
2020-10-27 19:44:37 +01:00
arm_section = 'angle'
2018-06-15 10:49:14 +02:00
def init(self, context):
super(DegToRadNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('NodeSocketFloat', 'Degrees')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketFloat', 'Radians')