thx for respoding fast but i get a wrong Answer.
say for example lets take a erual triagnel of sides each 6 units. so
Cos(xxx) = Adj / Hyp
ie
Cos(Angle) = 3 / 6
Cos(Angle)= 0.5
(Angle) = o.5 invers of Cos
(Angle) = 60Deg
but i use the as per your thoughs
if i use
System.Math.Acos(xxx) ie System.Math.Acos(0/5) i get 1.047198
i am in chaos...help me..
-JK
> Use System.Math.Acos(xxx)
Marc Gravell - 22 May 2006 13:17 GMT
60 degrees = 1.04719755 [etc] radians
Same answer, but a lot of math on trigonometry is expressed in radians;
to get back to 60, divide by Pi and multiply by 180 (or look for an existing
conversion function)
Marc