aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BSShapes.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-232/+0
|
* BulletSim: nearly complete in conversion from BulletSimAPI to BSAPITemplate. ↵Robert Adams2012-12-311-3/+3
| | | | Only initialization and debug fuctions left.
* BulletSim: remove all the debug printing of pointer formatting ↵Robert Adams2012-12-311-1/+7
| | | | (.ToString(X)) and replace it with a method on BulletBody, BulletShape, ...
* BulletSim: first round of conversion from direct BulletSimAPI interfacing by ↵Robert Adams2012-12-311-1/+6
| | | | BulletSim core to using the BulletSimAPITemplate. Physical object creation and destruction first.
* BulletSim: tweeking avatar capsule code in an attempt to haveRobert Adams2012-12-291-0/+13
| | | | | | | | | asymmetrical avatar capsule work now that rotation is being passed from the simulator. Turns out the Bullet capsule is just not very functional: it doesn't scale properly, the implementation only half does asymmetry and, in general, is hard to work with. Avatar shape is about what it was before these changes. Added initial data structures for avatar shape mesh.
* Rename BulletSim's PhysicsShapeType to BSPhysicsShapeType because itMelanie2012-11-221-8/+8
| | | | conflicts with PhysicsShape type defined in later libOMV
* BulletSim: rename SHAPE_AVATAR to SHAPE_CAPSULE with the eye to eventually ↵Robert Adams2012-11-211-3/+3
| | | | having mesh avatars.
* BulletSim: uplevel FixedShapeKey out of ShapeData structure (since it is ↵Robert Adams2012-11-211-3/+3
| | | | getting simplified out of existance someday) and update all the references to same.
* BulletSim: uplevel PhysicsShapeType out of ShapeData structure (since it is ↵Robert Adams2012-11-211-8/+8
| | | | getting simplified out of existance someday) and update all the references to that enum.
* BulletSim: Use base class constructors for initialization of BSShape and ↵Robert Adams2012-11-181-213/+208
| | | | other classes.
* BulletSim: add skeleton classes for shape objectification. This will ↵Robert Adams2012-11-071-0/+213
eventually replace all the if's and switches in ShapeCollection with polymorphism.