From 75f6c3d36455fa542e67c16a96c1fda61e9956d5 Mon Sep 17 00:00:00 2001 From: Brian McBee Date: Sun, 19 Aug 2007 06:14:36 +0000 Subject: More prep work for adding prims to ODE physics --- OpenSim/Region/Physics/Manager/PhysicsActor.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs') 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 } } + public abstract PhysicsVector Size + { + get; + set; + } + public abstract PhysicsVector Position { get; @@ -103,6 +109,18 @@ namespace OpenSim.Physics.Manager } } + public override PhysicsVector Size + { + get + { + return PhysicsVector.Zero; + } + set + { + return; + } + } + public override PhysicsVector Velocity { get -- cgit v1.1