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
|
|
@ -266,8 +266,8 @@ class Point2D
|
|||
//-------------------------------------- Point2I
|
||||
//
|
||||
inline Point2I::Point2I()
|
||||
:x(0),y(0)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -448,8 +448,8 @@ inline Point2I& Point2I::operator/=(const Point2I &_vec)
|
|||
//-------------------------------------- Point2F
|
||||
//
|
||||
inline Point2F::Point2F()
|
||||
:x(0.0f), y(0.0f)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -692,8 +692,8 @@ inline void Point2F::normalizeSafe()
|
|||
//-------------------------------------- Point2D
|
||||
//
|
||||
inline Point2D::Point2D()
|
||||
:x(0.0), y(0.0)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue