In C# it bugs me how there is no "Math.Cos" function that returns a float. A double is the only value you can get back thus forcing you to cast it to a float. Like so:: {float val = (float)Math.Cos(someVal);}
I need to use floats because i'm doing stuff in Direct3D which strictly uses floats. Floats are much more common in the graphics world(as it stands now) because they are 32bit.
Is there any functionality within C# I can use that would simply just process floats like C++ can do??
I do not want to wrap any C++ stuff because this needs to run on XNA & Linux for OpenGL.
NOTE: It would nice to have code that did not cast a double to a float.
Math.Cossince you can't edit the Math class. You just can define a function in your own class. – CodesInChaos Dec 3 '10 at 22:07