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 ?