Radians to degrees Tile#
This tile is used to convert radians to degrees.
Description#
Description
- Get the result of the conversion.
- X default to 0 if not wired, or a conversion to float could not be made.
Inputs#
X#
Info
- Type
Numeric value defaults to 0Accepted types: Integer, Float , String - Usage
Wire any tile that returns a numeric or string value that does not include letters or special charactersAny error will deafult the value to 0
Output#
Get the result#
Info
- Return
Float defaults to 0 - Usage
Will return the result of the conversion.
Real Signature#
Signature
- A plain language description of the function associated with the tile
def arc_cos(x): return math.acos(x)