diff options
author | Brian McBee | 2007-08-19 06:14:36 +0000 |
---|---|---|
committer | Brian McBee | 2007-08-19 06:14:36 +0000 |
commit | 75f6c3d36455fa542e67c16a96c1fda61e9956d5 (patch) | |
tree | 4f508956c035494af275359f65c87a1e742d4282 /OpenSim/Region/Physics/Manager | |
parent | Did I forget to add IScript.cs? Yes I did... (diff) | |
download | opensim-SC_OLD-75f6c3d36455fa542e67c16a96c1fda61e9956d5.zip opensim-SC_OLD-75f6c3d36455fa542e67c16a96c1fda61e9956d5.tar.gz opensim-SC_OLD-75f6c3d36455fa542e67c16a96c1fda61e9956d5.tar.bz2 opensim-SC_OLD-75f6c3d36455fa542e67c16a96c1fda61e9956d5.tar.xz |
More prep work for adding prims to ODE physics
Diffstat (limited to 'OpenSim/Region/Physics/Manager')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index d0faf02..ed987b0 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -49,6 +49,12 @@ namespace OpenSim.Physics.Manager | |||
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||
52 | public abstract PhysicsVector Size | ||
53 | { | ||
54 | get; | ||
55 | set; | ||
56 | } | ||
57 | |||
52 | public abstract PhysicsVector Position | 58 | public abstract PhysicsVector Position |
53 | { | 59 | { |
54 | get; | 60 | get; |
@@ -103,6 +109,18 @@ namespace OpenSim.Physics.Manager | |||
103 | } | 109 | } |
104 | } | 110 | } |
105 | 111 | ||
112 | public override PhysicsVector Size | ||
113 | { | ||
114 | get | ||
115 | { | ||
116 | return PhysicsVector.Zero; | ||
117 | } | ||
118 | set | ||
119 | { | ||
120 | return; | ||
121 | } | ||
122 | } | ||
123 | |||
106 | public override PhysicsVector Velocity | 124 | public override PhysicsVector Velocity |
107 | { | 125 | { |
108 | get | 126 | get |