GithubHelp home page GithubHelp logo

Comments (7)

DanielChappuis avatar DanielChappuis commented on September 26, 2024

Thanks for reporting this.

Can I ask you to post the code where you create the CollisionShape that you are trying to add to the body ?

from reactphysics3d.

ColinGilbert avatar ColinGilbert commented on September 26, 2024

I was trying to add a convex hull. Worked around by changing the default mass to 1.0

void noob::prop::attach_hull(const noob::basic_mesh& hull, float mass, const noob::vec3& position, const noob::versor& orientation)
{
        rp3d::ConvexMeshShape shape(&hull.vertices[0].v[0], hull.vertices.size(), 3 * sizeof(float));

        for (size_t i = 0; i < hull.indices.size(); i += 3)
        {
            float first = hull.indices[i];
            float second = hull.indices[i+1];
            float third = hull.indices[i+2];

            shape.addEdge(first, second);
            shape.addEdge(first, third);
            shape.addEdge(second, third);
        }

        shape.setIsEdgesInformationUsed(true);

        body->addCollisionShape(shape, rp3d::Transform(rp3d::Vector3(position.v[0], position.v[1], position.v[2]), rp3d::Quaternion(orientation.q[0], orientation.q[1], orientation.q[2], orientation.q[3])), mass);
}

from reactphysics3d.

DanielChappuis avatar DanielChappuis commented on September 26, 2024

When it failed, what value were you using for the "mass" in the addCollisionShape() call ? The mass has to be a positive value.

from reactphysics3d.

ColinGilbert avatar ColinGilbert commented on September 26, 2024

1.0

from reactphysics3d.

DanielChappuis avatar DanielChappuis commented on September 26, 2024

I'm not sure I understand. You mean it fails if you use 1.0 for the mass ? Then, you said it worked if you changed the mass to 1.0.

from reactphysics3d.

ColinGilbert avatar ColinGilbert commented on September 26, 2024

Oh sorry, I miswrote. What I meant was that the default mass was 0.0. Oops!

from reactphysics3d.

DanielChappuis avatar DanielChappuis commented on September 26, 2024

Ok so if I understand correctly, I can close this issue because this is not a bug right ? There is no default value for the mass in the addCollisionShape() method and the user has to use a positive value for the mass in parameter. Am I missing something ?

from reactphysics3d.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.