Collision

Could someone send my some web pages about collision, as less mathematic as posible ?? Thanks for help.

Originally posted by AleksX:
Could someone send my some web pages about collision, as less mathematic as posible ?? Thanks for help.

What about at least doing a search of “Collision” on this forum?

Less math

if ((Object_A.x == Object_B.x) && (Object_A.y == Object_B.y) && (Object_A.z == Object_B.z))

)
{
// Both object’s are in same location.
// do something…
}

Originally posted by AleksX:
Could someone send my some web pages about collision, as less mathematic as posible ?? Thanks for help.

[This message has been edited by nexusone (edited 10-10-2002).]

No math version of collision detection: I dont think it exists. But there are some librarys that can help. A good one is called coldet, search for it on google. But if you are realy interested in collision detection, just bite the bullet, and learn it. It will create alot less headakes, then trying to retrofit someone elses library to your code.