From 4f9da0cc3716dccf58ce25affc15cb1b9886040e Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Mon, 9 Jun 2014 11:50:31 -0700 Subject: [PATCH] fix whitespace formatting --- interface/src/renderer/RagDoll.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/renderer/RagDoll.cpp b/interface/src/renderer/RagDoll.cpp index e2654d737f..305724d6e4 100644 --- a/interface/src/renderer/RagDoll.cpp +++ b/interface/src/renderer/RagDoll.cpp @@ -23,7 +23,7 @@ // ---------------------------------------------------------------------------- // FixedConstraint // ---------------------------------------------------------------------------- -FixedConstraint::FixedConstraint(glm::vec3* point, const glm::vec3& anchor ) : _point(point), _anchor(anchor) { +FixedConstraint::FixedConstraint(glm::vec3* point, const glm::vec3& anchor) : _point(point), _anchor(anchor) { } float FixedConstraint::enforce() { @@ -84,7 +84,7 @@ void DistanceConstraint::updateProxyShape(Shape* shape, const glm::quat& rotatio } break; case Shape::CAPSULE_SHAPE: { - // capsule collides from startPoint to endPoint + // capsule collides from startPoint to endPoint CapsuleShape* capsule = static_cast(shape); capsule->setEndPoints(translation + rotation * (*_points[0]), translation + rotation * (*_points[1])); }