mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 10:43:11 +02:00
Merge pull request #1326 from ctrlaltdavid/fix/avatar-crash
Fix avatar crash
This commit is contained in:
commit
542e070d2d
1 changed files with 5 additions and 1 deletions
|
@ -486,7 +486,7 @@ void MultiSphereShape::calculateDebugLines() {
|
|||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
calculateChamferBox(_debugLines, radiuses, axes, _midPoint);
|
||||
} else if (_spheres.size() == 8) {
|
||||
std::vector<glm::vec3> axes;
|
||||
|
@ -508,6 +508,10 @@ void MultiSphereShape::connectEdges(std::vector<std::pair<glm::vec3, glm::vec3>>
|
|||
}
|
||||
|
||||
void MultiSphereShape::calculateChamferBox(std::vector<std::pair<glm::vec3, glm::vec3>>& outLines, const std::vector<float>& radiuses, const std::vector<glm::vec3>& axes, const glm::vec3& translation) {
|
||||
if (radiuses.size() == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<std::pair<glm::vec3, glm::vec3>> sphereLines;
|
||||
calculateSphereLines(sphereLines, glm::vec3(0.0f), radiuses[0]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue