aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
diff options
context:
space:
mode:
authorRobert Adams2013-01-06 22:56:16 -0800
committerRobert Adams2013-01-06 22:56:16 -0800
commit2e5222055ffa1e721221753c26faba342b920712 (patch)
tree20731bcd3ed9f553f38a7182b6c49a5eefc6baf8 /OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
parentBulletSim: update DLLs and SOs with better debugging output. (diff)
downloadopensim-SC_OLD-2e5222055ffa1e721221753c26faba342b920712.zip
opensim-SC_OLD-2e5222055ffa1e721221753c26faba342b920712.tar.gz
opensim-SC_OLD-2e5222055ffa1e721221753c26faba342b920712.tar.bz2
opensim-SC_OLD-2e5222055ffa1e721221753c26faba342b920712.tar.xz
BulletSim: comments and removing small compile errors introduced in last commit.
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs')
-rwxr-xr-xOpenSim/Region/Physics/BulletSPlugin/BSShapes.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs b/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
index cc725e8..ee18379 100755
--- a/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
+++ b/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs
@@ -95,9 +95,9 @@ public abstract class BSShape
95 // protected abstract static BSShape GetReference(); 95 // protected abstract static BSShape GetReference();
96 96
97 // Returns a string for debugging that uniquily identifies the memory used by this instance 97 // Returns a string for debugging that uniquily identifies the memory used by this instance
98 public string AddrString 98 public virtual string AddrString
99 { 99 {
100 get { return ptr.ToString("X"); } 100 get { return "unknown"; }
101 } 101 }
102 102
103 public override string ToString() 103 public override string ToString()
@@ -105,10 +105,6 @@ public abstract class BSShape
105 StringBuilder buff = new StringBuilder(); 105 StringBuilder buff = new StringBuilder();
106 buff.Append("<p="); 106 buff.Append("<p=");
107 buff.Append(AddrString); 107 buff.Append(AddrString);
108 buff.Append(",s=");
109 buff.Append(type.ToString());
110 buff.Append(",k=");
111 buff.Append(key.ToString("X"));
112 buff.Append(",c="); 108 buff.Append(",c=");
113 buff.Append(referenceCount.ToString()); 109 buff.Append(referenceCount.ToString());
114 buff.Append(">"); 110 buff.Append(">");