Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - sqrt in Momentics: (1 Item)
   
sqrt in Momentics  
Hi, I'm having issues with the sqrt() function in Momentics.

Example:
double x = sqrt(2);  does not work.
double x = sqrt(2.0); works.

double a = 2.0;
double x = sqrt(a); does not work.

When I say it does not work, I mean it wont build at all.
I am using C++.

Can anyone help me with this issues?