diff options
author | dan miller | 2007-10-19 05:20:48 +0000 |
---|---|---|
committer | dan miller | 2007-10-19 05:20:48 +0000 |
commit | d48ea5bb797037069d641da41da0f195f0124491 (patch) | |
tree | 40ff433d94859d629aac933d5ec73b382f62ba1a /libraries/ode-0.9/contrib/DotNetManaged/CommonMgd.h | |
parent | dont ask (diff) | |
download | opensim-SC_OLD-d48ea5bb797037069d641da41da0f195f0124491.zip opensim-SC_OLD-d48ea5bb797037069d641da41da0f195f0124491.tar.gz opensim-SC_OLD-d48ea5bb797037069d641da41da0f195f0124491.tar.bz2 opensim-SC_OLD-d48ea5bb797037069d641da41da0f195f0124491.tar.xz |
one more for the gipper
Diffstat (limited to 'libraries/ode-0.9/contrib/DotNetManaged/CommonMgd.h')
-rw-r--r-- | libraries/ode-0.9/contrib/DotNetManaged/CommonMgd.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/libraries/ode-0.9/contrib/DotNetManaged/CommonMgd.h b/libraries/ode-0.9/contrib/DotNetManaged/CommonMgd.h new file mode 100644 index 0000000..143397d --- /dev/null +++ b/libraries/ode-0.9/contrib/DotNetManaged/CommonMgd.h | |||
@@ -0,0 +1,43 @@ | |||
1 | #pragma once | ||
2 | |||
3 | namespace ODEManaged | ||
4 | { | ||
5 | |||
6 | __value public struct Vector3 | ||
7 | { | ||
8 | double x; | ||
9 | double y; | ||
10 | double z; | ||
11 | }; | ||
12 | |||
13 | |||
14 | __value public struct Vector4 | ||
15 | { | ||
16 | double W; | ||
17 | double x; | ||
18 | double y; | ||
19 | double z; | ||
20 | }; | ||
21 | |||
22 | |||
23 | __value public struct Matrix3 | ||
24 | { | ||
25 | double m11; | ||
26 | double m12; | ||
27 | double m13; | ||
28 | double m21; | ||
29 | double m22; | ||
30 | double m23; | ||
31 | double m31; | ||
32 | double m32; | ||
33 | double m33; | ||
34 | }; | ||
35 | |||
36 | //__value public struct NearCallback | ||
37 | //{ | ||
38 | // void *data; | ||
39 | // dGeomID o1; | ||
40 | // dGeomID o2; | ||
41 | //}; | ||
42 | |||
43 | } \ No newline at end of file | ||