문제

This is a static issue asserts. (From btVector5.h)

mVec132 = vmulq_n_f3(mVec126, f); //this is undefined

Got 2 error Thanks so much.

도움이 되었습니까?

해결책

Oh I see.

The problem is that you have

mVec132 = vmulq_n_f3(mVec126, f);

what you want is write is mVec133 not mVec132

mVec133 = vmulq_n_f3(mVec126, f);

Hope this helps.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top