mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 20:35:35 +00:00
uninitialized variables-math
This commit is contained in:
parent
5f59ebbacc
commit
ebb7ed1b78
13 changed files with 32 additions and 19 deletions
|
|
@ -35,7 +35,7 @@ public:
|
|||
F32 radius;
|
||||
|
||||
public:
|
||||
SphereF() { }
|
||||
SphereF() :radius(1.0f) {}
|
||||
SphereF( const Point3F& in_rPosition, const F32 in_rRadius )
|
||||
: center(in_rPosition),
|
||||
radius(in_rRadius)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue