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

15 lines
455 B
Python
Raw Normal View History

2018-06-15 10:49:14 +02:00
from arm.logicnode.arm_nodes import *
class DegToRadNode(ArmLogicTreeNode):
2020-09-23 22:12:25 +02:00
"""Use to convert degrees to radians."""
2018-06-15 10:49:14 +02:00
bl_idname = 'LNDegToRadNode'
bl_label = 'Deg to Rad'
arm_version = 1
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')
self.add_output('NodeSocketFloat', 'Radians')
2018-06-15 10:49:14 +02:00
add_node(DegToRadNode, category=PKG_AS_CATEGORY, section='angle')