Box2D Forums

It is currently Tue May 21, 2013 12:07 pm

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 6 posts ] 
Author Message
 Post subject: Fixtures in Jbox?
PostPosted: Sat Sep 24, 2011 10:19 am 
Offline

Joined: Sat Sep 10, 2011 1:03 am
Posts: 19
Are there any fixtures in jbox2d? I cant find it...


Top
 Profile  
 
 Post subject: Re: Fixtures in Jbox?
PostPosted: Sat Sep 24, 2011 9:11 pm 
Offline

Joined: Thu Sep 22, 2011 9:57 pm
Posts: 8
not sure what exactly you mean, little more detail would be helpful... thats how you use fixtures in jbox2d:

Code:
      FixtureDef fixtureDef = new FixtureDef();
      fixtureDef.shape = myShape;
      fixtureDef.density = 2.0f;
      fixtureDef.friction = 0.2f;
      fixtureDef.restitution = 0.3f;
      myBody.createFixture(fixtureDef);


Top
 Profile  
 
 Post subject: Re: Fixtures in Jbox?
PostPosted: Sun Sep 25, 2011 5:58 am 
Offline

Joined: Sat Sep 10, 2011 1:03 am
Posts: 19
OK, i got it. I was using the jbox 2.0.1 for android, now got it... another question: how can i get the verticles of shape?


Top
 Profile  
 
 Post subject: Re: Fixtures in Jbox?
PostPosted: Sun Sep 25, 2011 7:18 am 
Offline

Joined: Thu Sep 22, 2011 9:57 pm
Posts: 8
either by

Code:
Vec2 v[] = shape.getVertices();


or by

Code:
for (int n = 0; n < shape.getVertexCount(); n++) {
Vec2 v = shape.getVertex(n);
}


Top
 Profile  
 
 Post subject: Re: Fixtures in Jbox?
PostPosted: Mon Oct 03, 2011 9:46 am 
Offline

Joined: Sat Sep 10, 2011 1:03 am
Posts: 19
Hmm... I think Its for the 2.1.2, and im using 2.0.1, becouse 2.1.2 is not working for me... Any Ideas for 2.0.1??


Top
 Profile  
 
 Post subject: Re: Fixtures in Jbox?
PostPosted: Sat Oct 22, 2011 7:34 am 
Offline

Joined: Mon Jun 08, 2009 12:21 pm
Posts: 353
no fixtures in 2.0.1, that's a different api


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 6 posts ] 

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group