This commit is contained in:
Seth Alves 2017-03-02 16:47:19 -08:00
parent 3b581a8dfe
commit f055711c76

View file

@ -53,7 +53,7 @@ glm::vec3 Line3DOverlay::getEnd() const {
if (_endParentID != QUuid()) {
glm::vec3 localOffset = _direction * _length;
bool success;
worldEnd = localToWorld(getLocalStart() + localOffset, _endParentID, _endParentJointIndex, success);
worldEnd = localToWorld(localOffset, _endParentID, _endParentJointIndex, success);
return worldEnd;
}