armory/blender/arm/logicnode/math/LN_rad_to_deg.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 RadToDegNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Converts radians to degrees."""
2018-06-15 10:49:14 +02:00
bl_idname = 'LNRadToDegNode'
bl_label = 'Rad to Deg'
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(RadToDegNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('NodeSocketFloat', 'Radians')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketFloat', 'Degrees')