BEPUphysics.BroadPhaseEntries.MobileCollidables.MobileMeshCollidable.UpdateBoundingBoxInternal C# (CSharp) Метод

UpdateBoundingBoxInternal() защищенный Метод

protected UpdateBoundingBoxInternal ( float dt ) : void
dt float
Результат void
        protected internal override void UpdateBoundingBoxInternal(float dt)
        {
            Shape.GetBoundingBox(ref worldTransform, out boundingBox);

            //This DOES NOT EXPAND the local hierarchy.
            //The bounding boxes of queries against the local hierarchy
            //should be expanded using the relative velocity.
            ExpandBoundingBox(ref boundingBox, dt);
        }