X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ecere%2Fsrc%2Fgfx%2F3D%2FVector3D.ec;h=a78324308c5e6263c207effbd8bac5b264ca8e21;hb=469a4f441fdefaccd86f936c9ad7bd98419b57bc;hp=2cf29f71ba7a8ca2e855c479ef6a23990e69b185;hpb=09a9d6b0c41dafbe803445f9395333b72e41178b;p=sdk diff --git a/ecere/src/gfx/3D/Vector3D.ec b/ecere/src/gfx/3D/Vector3D.ec index 2cf29f7..a783243 100644 --- a/ecere/src/gfx/3D/Vector3D.ec +++ b/ecere/src/gfx/3D/Vector3D.ec @@ -151,7 +151,7 @@ public struct Vector3D } }; -inline float FastInvSqrt(float x) +public inline float FastInvSqrt(float x) { union { float f; uint u; } i; float halfX = x / 2;