Merge pull request #4234 from szabolcsdombi/szabolcsdombi-patch-1

fix missing getTransformB in btMinkowskiSumShape
This commit is contained in:
erwincoumans
2022-04-14 21:55:29 -07:00
committed by GitHub

View File

@@ -43,6 +43,9 @@ public:
void setTransformB(const btTransform& transB) { m_transB = transB; }
const btTransform& getTransformA() const { return m_transA; }
const btTransform& getTransformB() const { return m_transB; }
// keep this for backward compatibility
const btTransform& GetTransformB() const { return m_transB; }
virtual btScalar getMargin() const;