From 3280a2b967ef3e8c9d9b307e8931132460137df5 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Fri, 3 Jun 2016 09:50:14 -0700 Subject: [PATCH] fix indentation --- libraries/physics/src/ShapeFactory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/physics/src/ShapeFactory.cpp b/libraries/physics/src/ShapeFactory.cpp index 635df1054d..d667d1075d 100644 --- a/libraries/physics/src/ShapeFactory.cpp +++ b/libraries/physics/src/ShapeFactory.cpp @@ -116,8 +116,8 @@ btConvexHullShape* ShapeFactory::createConvexHull(const QVector& poin uint32_t numPoints = (uint32_t)hull->getNumPoints(); if (numPoints > MAX_HULL_POINTS) { - // we have too many points, so we compute point projections along canonical unit vectors - // and keep the those that project the farthest + // we have too many points, so we compute point projections along canonical unit vectors + // and keep the those that project the farthest btVector3 btCenter = glmToBullet(center); btVector3* shapePoints = hull->getUnscaledPoints(); std::vector finalIndices;