aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BSPhysObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSPhysObject.cs')
-rwxr-xr-xOpenSim/Region/Physics/BulletSPlugin/BSPhysObject.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSPhysObject.cs b/OpenSim/Region/Physics/BulletSPlugin/BSPhysObject.cs
index 7d91468..65d7f34 100755
--- a/OpenSim/Region/Physics/BulletSPlugin/BSPhysObject.cs
+++ b/OpenSim/Region/Physics/BulletSPlugin/BSPhysObject.cs
@@ -63,7 +63,7 @@ public abstract class BSPhysObject : PhysicsActor
63 public BSLinkset Linkset { get; set; } 63 public BSLinkset Linkset { get; set; }
64 64
65 // Return the object mass without calculating it or having side effects 65 // Return the object mass without calculating it or having side effects
66 public abstract float MassRaw { get; } 66 public abstract float RawMass { get; }
67 // Set the raw mass but also update physical mass properties (inertia, ...) 67 // Set the raw mass but also update physical mass properties (inertia, ...)
68 public abstract void UpdatePhysicalMassProperties(float mass); 68 public abstract void UpdatePhysicalMassProperties(float mass);
69 69
@@ -105,8 +105,10 @@ public abstract class BSPhysObject : PhysicsActor
105 // Tell the object to clean up. 105 // Tell the object to clean up.
106 public abstract void Destroy(); 106 public abstract void Destroy();
107 107
108 public abstract OMV.Vector3 RawPosition { get; set; }
108 public abstract OMV.Vector3 ForcePosition { get; set; } 109 public abstract OMV.Vector3 ForcePosition { get; set; }
109 110
111 public abstract OMV.Quaternion RawOrientation { get; set; }
110 public abstract OMV.Quaternion ForceOrientation { get; set; } 112 public abstract OMV.Quaternion ForceOrientation { get; set; }
111 113
112 public abstract OMV.Vector3 ForceVelocity { get; set; } 114 public abstract OMV.Vector3 ForceVelocity { get; set; }