diff options
author | dan miller | 2007-10-19 05:20:07 +0000 |
---|---|---|
committer | dan miller | 2007-10-19 05:20:07 +0000 |
commit | fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd (patch) | |
tree | 51bcae7a1b8381a6bf6fd8025a7de1e30fe0045d /libraries/ode-0.9/OPCODE/Opcode.cpp | |
parent | resubmitting ode (diff) | |
download | opensim-SC_OLD-fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd.zip opensim-SC_OLD-fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd.tar.gz opensim-SC_OLD-fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd.tar.bz2 opensim-SC_OLD-fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd.tar.xz |
dont ask
Diffstat (limited to 'libraries/ode-0.9/OPCODE/Opcode.cpp')
-rw-r--r-- | libraries/ode-0.9/OPCODE/Opcode.cpp | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/libraries/ode-0.9/OPCODE/Opcode.cpp b/libraries/ode-0.9/OPCODE/Opcode.cpp deleted file mode 100644 index c9fa104..0000000 --- a/libraries/ode-0.9/OPCODE/Opcode.cpp +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
2 | /* | ||
3 | * OPCODE - Optimized Collision Detection | ||
4 | * Copyright (C) 2001 Pierre Terdiman | ||
5 | * Homepage: http://www.codercorner.com/Opcode.htm | ||
6 | */ | ||
7 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
8 | |||
9 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
10 | /** | ||
11 | * Main file for Opcode.dll. | ||
12 | * \file Opcode.cpp | ||
13 | * \author Pierre Terdiman | ||
14 | * \date March, 20, 2001 | ||
15 | */ | ||
16 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
17 | |||
18 | /* | ||
19 | Finding a good name is difficult! | ||
20 | Here's the draft for this lib.... Spooky, uh? | ||
21 | |||
22 | VOID? Very Optimized Interference Detection | ||
23 | ZOID? Zappy's Optimized Interference Detection | ||
24 | CID? Custom/Clever Interference Detection | ||
25 | AID / ACID! Accurate Interference Detection | ||
26 | QUID? Quick Interference Detection | ||
27 | RIDE? Realtime Interference DEtection | ||
28 | WIDE? Wicked Interference DEtection (....) | ||
29 | GUID! | ||
30 | KID ! k-dop interference detection :) | ||
31 | OPCODE! OPtimized COllision DEtection | ||
32 | */ | ||
33 | |||
34 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
35 | // Precompiled Header | ||
36 | #include "Stdafx.h" | ||
37 | |||
38 | bool Opcode::InitOpcode() | ||
39 | { | ||
40 | Log("// Initializing OPCODE\n\n"); | ||
41 | // LogAPIInfo(); | ||
42 | return true; | ||
43 | } | ||
44 | |||
45 | void ReleasePruningSorters(); | ||
46 | bool Opcode::CloseOpcode() | ||
47 | { | ||
48 | Log("// Closing OPCODE\n\n"); | ||
49 | |||
50 | ReleasePruningSorters(); | ||
51 | |||
52 | return true; | ||
53 | } | ||
54 | |||
55 | #ifdef ICE_MAIN | ||
56 | |||
57 | void ModuleAttach(HINSTANCE hinstance) | ||
58 | { | ||
59 | } | ||
60 | |||
61 | void ModuleDetach() | ||
62 | { | ||
63 | } | ||
64 | |||
65 | #endif | ||