From 0492dd8b9687c0923f11de86b020a308ad7bd800 Mon Sep 17 00:00:00 2001 From: Areloch Date: Mon, 29 Jan 2018 15:24:46 -0600 Subject: [PATCH] Tabs n' spaces --- Engine/source/gui/editor/guiShapeEdPreview.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Engine/source/gui/editor/guiShapeEdPreview.cpp b/Engine/source/gui/editor/guiShapeEdPreview.cpp index 24b1e65f8..f04ef371a 100644 --- a/Engine/source/gui/editor/guiShapeEdPreview.cpp +++ b/Engine/source/gui/editor/guiShapeEdPreview.cpp @@ -1167,15 +1167,15 @@ void GuiShapeEdPreview::computeSceneBounds(Box3F& bounds) if (bounds.getExtents().x < POINT_EPSILON || bounds.getExtents().y < POINT_EPSILON || bounds.getExtents().z < POINT_EPSILON) { - bounds.set(Point3F::Zero); + bounds.set(Point3F::Zero); - //We probably don't have any actual meshes in this model, so compute using the bones if we have them - for (S32 i = 0; i < mModel->getShape()->nodes.size(); i++) - { - Point3F nodePos = mModel->mNodeTransforms[i].getPosition(); + //We probably don't have any actual meshes in this model, so compute using the bones if we have them + for (S32 i = 0; i < mModel->getShape()->nodes.size(); i++) + { + Point3F nodePos = mModel->mNodeTransforms[i].getPosition(); - bounds.extend(nodePos); - } + bounds.extend(nodePos); + } } }