Hi all,

I am having problem with a simple If statement:

if(Value>0.0)
{
stack.push(Pj);
stack.push(Pi);
stack.push(Pt);
}
else
stack.push(convex.get(i));

Value is greater(double) then 0.0. After it goes "if statement", it continues to goes through "else". Event though the Value is greater than 0.0.

Thanks!