Code Monkey home page Code Monkey logo

Comments (5)

Dragopapa avatar Dragopapa commented on May 24, 2024 1
  1. I guess this question is not releveant anymore, but the error occured both with VS 2019 and VS 2022 Preview.

  2. As far as I remember it worked fine, but the performance between v1.1.0 and the master was quite noticeable, so I didn't stick with that version.

  3. It works like a charm. Also I want to take the opportunity to thank you for making this awesome library, it's the best out there without question. (for example, Chipmunk2D lacks continuous collision detection, Box2D doesn't support rounded corners, PlayRho has both)

Thanks for the fix, and for the library as well. You rock!

from playrho.

louis-langholtz avatar louis-langholtz commented on May 24, 2024

Thank you for reporting this!

What release of the codebase was this with? Or what was the latest commit hash?

from playrho.

Dragopapa avatar Dragopapa commented on May 24, 2024

It was with the latest master branch (fa70fd7).

from playrho.

Dragopapa avatar Dragopapa commented on May 24, 2024

Here is a minimal example, that reproduces the error.

using namespace playrho;
using namespace playrho::d2;

World world;

CreateBody(world, BodyConf{}.UseLocation({ 0.0f, 0.0f }).UseType(BodyType::Kinematic).Use(CreateShape(world, PolygonShapeConf{}.SetAsBox(50.0f, 0.5f))));
for (int i = 0; i < 10; ++i)
{
	for (int j = 0; j < 10; ++j)
	{
		CreateBody(world, BodyConf{}.UseLocation({ i * 2.0f, j * 5.0f + 50 }).UseType(BodyType::Dynamic).UseLinearAcceleration({0.0f, -9.8f}).Use(CreateShape(world, PolygonShapeConf{}.SetAsBox(0.5f, 0.5f))));
	}
}

while (true)
{
	Step(world);
}

from playrho.

louis-langholtz avatar louis-langholtz commented on May 24, 2024

It was with the latest master branch (fa70fd7).

Thank you. That's what I see as the latest hash on master as well.

I'm trying to reproduce this. I haven't been able to using your example. I do believe you've uncovered a real problem though.

I'm also trying to uncover the problem through visual inspection. I believe I have found it now and have a fix.

Some questions:

  1. What compiler are you using? I'm sorry I can't tell from your screenshot. I'd guess it's MS Visual Studio MSVC. And what version are you using of your compiler? I doubt it's a compiler bug, but it would be interesting to me to know the compiler and version anyway.
  2. Have you tried using the latest release code - i.e. the v1.1.0 tagged code - to see if this error occurs in that and if so, does it? There are incompatible changes in the master branch code compared with the latest release but hopefully the latest release code is more stable and wouldn't have a problem like this.
  3. Would you please try the changes from pull request #423 and tell me if they fix the problem for you?

Thanks again!

from playrho.

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.