hello everybody
i did not manage to convert radians to degree als inline calculation:
i need to input for example a 10% slope or deviation as angle into the _rotate command.
so i want to calculate 5.71059… degree inline:
_rotate 0 =(degree(atan(0.1))
doesn t work.
how do i convert the atan(0.1) result into degree ?
An alternative for the command line is to append “radians” to the result of atan: (atan(0.1))radians. This tells Rotate that the angle is in radians, not degrees. The paranthesis around atan are needed so that “radians” applies to the result of atan.
notes:
the old =(…) syntax seams not to work anymore.
somewhere i read, that the Python math Module should be implemented in the Inline Calculator, wich offers a degree() function …
but for me, the question is solved.