mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 07:04:36 +00:00
uninitialized variables-math
This commit is contained in:
parent
5f59ebbacc
commit
ebb7ed1b78
13 changed files with 32 additions and 19 deletions
|
|
@ -42,7 +42,7 @@ public:
|
|||
public:
|
||||
F32 x,y,z,w;
|
||||
|
||||
QuatF() {} // no init constructor
|
||||
QuatF() :x(0.0f), y(0.0f), z(0.0f), w(1.0f) {} //identity constructor
|
||||
QuatF( F32 _x, F32 _y, F32 _z, F32 w );
|
||||
QuatF( const Point3F &axis, F32 angle );
|
||||
QuatF( const MatrixF & m );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue