Phys2D - AngleJoint

Hi !

I am using Phys2D and I am very happy with DistanceJoint, SlideJoint and FixedJoint: all the constraints are respected by the API

Problem occurs when I use the AngleJoint of FixedAngleJoint

I tried to use it as the example in test/net/phys2D/raw/test/AngularConstraint.java


          {
			Body b1 = new Body( "" , new Box(1f,1f), 1f );	
			Body b2 = new Body( "" , new Box(1f,1f), 1f );
			Body b3 = new Body( "" , new Box(1f,1f), 1f );
			
			world.add( b1 );
			world.add( b2 );
			world.add( b3 );
			
			b1.setPosition( 100 , 100 );
			b2.setPosition( 100 , 200 );
			b3.setPosition( 200 , 100 );
			
			generateDistanceJoint( b1 , b2 );
			generateDistanceJoint( b1 , b3 );
						
			FixedAngleJoint angleJoint1 = new FixedAngleJoint( b1 , b2 , new Vector2f(0,0),  new Vector2f(0,0) , 0.1f   );
			world.add( angleJoint1 );
			FixedAngleJoint angleJoint2 = new FixedAngleJoint( b1 , b3, new Vector2f(0,0),  new Vector2f(0,0) , 0.1f  );
			world.add( angleJoint2 );
        }

	public DistanceJoint generateDistanceJoint( Body bodyA , Body bodyB )
	{
		Point2D pointA = new Point2D.Float( bodyA.getLastPosition().getX() , bodyA.getLastPosition().getY() );
		Point2D pointB = new Point2D.Float( bodyB.getLastPosition().getX() , bodyB.getLastPosition().getY() );
		float distance = (float) pointA.distance( pointB );
		DistanceJoint distanceJoint = new DistanceJoint( bodyA , bodyB , new Vector2f(0,0) , new Vector2f(0,0), distance );
		distanceJointList.add( distanceJoint );
		world.add( distanceJoint );
		return distanceJoint;
	}


The only thing I am trying to do is to make an angular constraint with 3 points b1, b2, b3, and to define the angle b2-b1-b3

any idea ? am I totally wrong ?

What is going wrong with the way you’re doing it now?

It sounds to me like you’re just trying to lock all three bodies together in a fixed location, in which case wouldn’t you just use a FixedJoint? Though I’ll admit I’m not too familiar with the joint types in Phys2d…

The angular constraint is not respected.

And also, if the 3 points do not start with the good angle, the system do not correct it… :-\

I am planning to search for an other free physic engine because of that…

I’d suggest JBox2D :slight_smile:

Kev

Thank you, I will have a look at it, and will come back here to tell you if it had fixed my problem !

Well, Angle Joint is planed but not active for the moment in JBox2d…

I have another question : I am creating a system that is maybe a bit too complex : I want to create a mecanical piston. So I have 2 boxes which are linked together and a 3rd one is sliding between the two first.

The system is ok, but sometimes it seems the impulses are getting nervous and objects overlap and vibrate, then the system explode.

any idea ?

I found the solution so I put it here:

as the number of object involve in the same system of constraint grows, I had to switch the World constructor from QuadSpaceStrategy to BruteCollisionStrategy

and it works !

:slight_smile:

Again, I’m not entirely sure what you’re looking to do here. To my knowledge, an angle joint in Phys2d pins the bodies together at a point, and constrains the angle that they are allowed to move to around that point; a fixed angle joint would set the upper and lower limits equal to each other, right? In JBox2d this corresponds to a RevoluteJoint with equal lower and upper limits, but you should be be to do this just fine in either Phys2d or JBox2d, so I’m not sure what’s exactly missing.

Unless you’re looking for some other kind of behavior? Maybe a picture would help?

FWIW, we don’t have current plans to add other joint types to JBox2d, except for the line joint from Box2d (coming in a future update to JBox2d when I have some time); any other joint requests should be directed to Erin Catto at box2d.org, if you can convince him to put them into the C++ engine they will eventually get into JBox2d as well (and if you desperately need something that’s in the C++ version, ask me and I’ll bump that feature up on the priority list). But generally speaking, we don’t add stuff that Erin doesn’t add to Box2d.

Thank you very much: you are right: I had a lack of information about angleJoint !

so I have everything I need !

Thank you !

I can’t achieve to create this:

I would like to create an object sliding to an other…

I guess I need a fixedAngleJoint to make both object in the same alignement, and a distanceJoint to constrain the moving distance from one to another… but do I need to create object around the sliding one to constrain it ? or is there an other joint I should add ?

I love phys2D !

the only thing missing is the clone for the Body Object !