Sin(54.66*(Pi/180))=0.016649618
How would i convert it to output in radians?
thus Sin(54.66*(Pi/180))=0.81573397
How would i convert it to output in radians?
thus Sin(54.66*(Pi/180))=0.81573397
Const RADIANS_TO_DEGREES! = 180.0! / Pi Const DEGREES_TO_RADIANS! = Pi / 180.0! Print "Sine of Rad = " + Sin(54.66 * DEGREES_TO_RADIANS!) ' wrong Print "Sine of Deg = " + Sin((54.66 * DEGREES_TO_RADIANS!) * RADIANS_TO_DEGREES!) ' right, but mad! Print "Sine of Deg = " + Sin(54.66) ' right
DrawOval( x#,y#,width#,height# )