I've got a method that computes two offsets for something else in my code. I wrote these offsets to the output and the result was: Isn't number
. When I tryed to assign these values to another variables, these variables' value was 0.
This is my code:
int w = 1200;
int h = 1824;
double offsetX = System.Math.Sqrt (-((9 * w * w) / 16));
double offsetY = System.Math.Sqrt (((9 * h * h) / 16) + ((9 * w * w) / 16) - offsetX);
I don't know if it is a mathematical or a programming problem. Why does it return this weird value?
-((9 * w * w) / 16)
expression returns a negative value which is-810000
.That's why this method returns
NaN
.From the documentation of
Math.Sqrt
;From Wikipedia;