|
From: Jeroen v. d. Z. <je...@fo...> - 2005-11-23 14:36:01
|
On Wednesday 23 November 2005 06:06 am, levan wrote:
> 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()); }
Its a typo; thanks for the bug-report!
- Jeroen
|