Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of an example of collision avoidance in using THREE.js and Physi.js? I can't seem to make it work ...

Here is the code i've made so far:

    // Throwing the object from the top of the room
    zmesh.position.set(
        Math.random() * 5.5 - 3,
        5,
        Math.random() * 5.5 - 3
    );

    zmesh.useEuler = true;

    zmesh.overdraw = true;
    zmesh.rotation.y = -360;

    var direction = new THREE.Vector3;

    direction.set(0,-1,0);      

    var intersect_ray = new THREE.Ray(zmesh.position,direction);
    var intersection = intersect_ray.intersectObjects(objects);

    // Checking if the current object is intersected with any other objects on the floor
    while (intersection.length > 0)
    {
        // We found other objects on the floor, so we generate a new position to be set
        zmesh.position.set(
            Math.random() * 5.5 - 3,
            5,
            Math.random() * 5.5 - 3
        );

        intersection = intersect_ray.intersectObjects(objetcs);
        alert(intersection[0].point);
    }

    scene.add(zmesh);
    objects.push(zmesh);
}

I'm using Physi.js lib in order to "throw" objects from the top of the screen, just like this example: chandlerprall.github.com/Physijs/examples/collisions.html
The thing I want to do different - is to avoid the object collision after they are being thrown. I tried to cast a ray and check if any objects are on the floor, but it doesn't seem to be working

share|improve this question
I think you forgot to describe in detail what the expected outcome is, and what's going wrong, and what you've found so far as you've tried to debug the problem. – Pointy Jun 16 '12 at 13:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.