source: GTP/trunk/App/Games/Jungle_Rumble/src/physic/foundation/include/Nx16F32.h @ 1378

Revision 1378, 1.1 KB checked in by giegl, 18 years ago (diff)

GTPD - Jungle Rumble - integrate into GTP SVN structure

Line 
1#ifndef NX_FOUNDATION_NX16F32
2#define NX_FOUNDATION_NX16F32
3/*----------------------------------------------------------------------------*\
4|
5|                                               Public Interface to NovodeX Technology
6|
7|                                                            www.novodex.com
8|
9\*----------------------------------------------------------------------------*/
10/** \addtogroup foundation
11  @{
12*/
13//Exclude file from docs
14/** \cond */
15
16//the file name of this header is legacy due to pain of renaming file in repository.
17
18#include "Nx.h"
19
20class Nx16Real
21        {
22        public:
23    union
24                {
25        struct S
26                        {
27            NxReal        _11, _12, _13, _14;
28            NxReal        _21, _22, _23, _24;
29            NxReal        _31, _32, _33, _34;
30            NxReal        _41, _42, _43, _44;
31                        } s;
32                NxReal m[4][4];
33                };
34        };
35
36/** \endcond */
37 /** @} */
38#endif
39
40
41//AGCOPYRIGHTBEGIN
42///////////////////////////////////////////////////////////////////////////
43// Copyright © 2005 AGEIA Technologies.
44// All rights reserved. www.ageia.com
45///////////////////////////////////////////////////////////////////////////
46//AGCOPYRIGHTEND
47
Note: See TracBrowser for help on using the repository browser.