diff --git a/Source/Scene/Primitive.js b/Source/Scene/Primitive.js index 4aa6975e3c51..93a1ee6821c1 100644 --- a/Source/Scene/Primitive.js +++ b/Source/Scene/Primitive.js @@ -1193,6 +1193,8 @@ define([ for (var i = 0; i < length; ++i) { var boundingSphere = boundingSpheres[i]; + var modelMatrix = defaultValue(primitive.modelMatrix, Matrix4.IDENTITY); + boundingSphere = BoundingSphere.transform(boundingSphere, modelMatrix, boundingSphere); var center = boundingSphere.center; var radius = boundingSphere.radius;