On 3/31/2022 12:17 PM, Jan Öhman via Discuss wrote:
But, how to convert to degrees from arc sin() - radians
OpenSCAD's trigonometry functions all operate in degrees.
echo(acos(0));
yields
ECHO: 90
If for some reason you need radians, there's nothing OpenSCAD-specific
about the conversion - just multiply by PI/180. (Note that PI is a
built-in constant.)
On 3/31/2022 12:17 PM, Jan Öhman via Discuss wrote:
> But, how to convert to degrees from *arc sin() - radians*
>
OpenSCAD's trigonometry functions all operate in degrees.
echo(acos(0));
yields
ECHO: 90
If for some reason you need radians, there's nothing OpenSCAD-specific
about the conversion - just multiply by PI/180. (Note that PI is a
built-in constant.)