More prep work for adding prims to ODE physics

This commit is contained in:
Brian McBee
2007-08-19 06:14:36 +00:00
parent 489803e6bc
commit 75f6c3d364
4 changed files with 97 additions and 34 deletions

View File

@@ -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