This commit is contained in:
parent
c9050e5b51
commit
e7647f69dc
3 changed files with 29 additions and 23 deletions
|
@ -9,8 +9,16 @@
|
|||
#pragma warning(disable:4201)
|
||||
|
||||
// there should be _NO_ constructor
|
||||
// there is now :o)
|
||||
struct Vector3
|
||||
{
|
||||
Vector3(){};
|
||||
Vector3(real _x,real _y,real _z)
|
||||
{
|
||||
x=_x;
|
||||
y=_y;
|
||||
z=_z;
|
||||
}
|
||||
union
|
||||
{
|
||||
real m_Vec[3];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue