|
From: levan <le...@la...> - 2005-11-23 11:04:46
|
Hello All
in file FXVec2f.cpp
/// Length and square of length
FXfloat length2() const { return x*x+y*y; }
FXfloat length() const { return sqrtf(length()); }
I think second line needs(It just calls itself :) ) to be
FXfloat length() const { return sqrtf(length2()); }
Best regards,
levan mailto:le...@la...
|