mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
uninitialized variables-math
This commit is contained in:
parent
5f59ebbacc
commit
ebb7ed1b78
13 changed files with 32 additions and 19 deletions
|
|
@ -39,7 +39,7 @@
|
|||
class Point4I
|
||||
{
|
||||
public:
|
||||
Point4I() {}
|
||||
Point4I() :x(0), y(0), z(0), w(0) {}
|
||||
Point4I(S32 _x, S32 _y, S32 _z, S32 _w);
|
||||
|
||||
void zero(); ///< Zero all values
|
||||
|
|
@ -127,6 +127,7 @@ inline void Point4I::zero()
|
|||
//-------------------------------------- Point4F
|
||||
//
|
||||
inline Point4F::Point4F()
|
||||
:x(0.0f), y(0.0f), z(0.0f), w(0.0f)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue