Search found 2 matches

by migdalskiy
Thu Jun 04, 2009 12:05 am
Forum: Release Announcements
Topic: Sony Vector Math library and SIMD math library open sourced
Replies: 5
Views: 129030

Re: Sony Vector Math library and SIMD math library open sourced

When you compare two numbers in SIMD, you should be always aware of the type of entities you compare. VMX and modern SSE allows you to treat register contents as integers, masks or floats freely, but it doesn't mean you can magically add two numbers when they're float and int. Or compare two masks a...
by migdalskiy
Thu Sep 18, 2008 1:49 am
Forum: General Bullet Physics Support and Feedback
Topic: Making object immovable
Replies: 0
Views: 2357

Making object immovable

What's the best way to make an object immoveable? When I constrain 2 objects, and make one of them immoveable by body->setMassProps(0.0f, btVector3(0,0,0)); I get inherently unstable system for some reason. I tried pinning the head of the ragdoll in the GenericJointDemo this way, and the ragdoll exp...