Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/rigidbody/rb_bullet_api.cpp')
-rw-r--r--intern/rigidbody/rb_bullet_api.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/intern/rigidbody/rb_bullet_api.cpp b/intern/rigidbody/rb_bullet_api.cpp
index b5814055cf8..daa377a7b55 100644
--- a/intern/rigidbody/rb_bullet_api.cpp
+++ b/intern/rigidbody/rb_bullet_api.cpp
@@ -649,6 +649,16 @@ void RB_body_get_orientation(rbRigidBody *object, float v_out[4])
copy_quat_btquat(v_out, body->getWorldTransform().getRotation());
}
+void RB_body_get_scale(rbRigidBody *object, float v_out[3])
+{
+ btRigidBody *body = object->body;
+
+ btCollisionShape *cshape = body->getCollisionShape();
+ /* The body should have a collision shape when we try to set the scale. */
+ btAssert(cshape);
+ copy_v3_btvec3(v_out, cshape->getLocalScaling());
+}
+
/* ............ */
/* Overrides for simulation */