com.badlogic.gdx.physics.box2d
Class FixtureDef

java.lang.Object
  extended by com.badlogic.gdx.physics.box2d.FixtureDef

public class FixtureDef
extends Object

A fixture definition is used to create a fixture. This class defines an abstract fixture definition. You can reuse fixture definitions safely.

Author:
mzechner

Field Summary
 float density
          The density, usually in kg/m^2.
 Filter filter
          Contact filtering data.
 float friction
          The friction coefficient, usually in the range [0,1].
 boolean isSensor
          A sensor shape collects contact information but never generates a collision response.
 float restitution
          The restitution (elasticity) usually in the range [0,1].
 Shape shape
          The shape, this must be set.
 
Constructor Summary
FixtureDef()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

shape

public Shape shape
The shape, this must be set. The shape will be cloned, so you can create the shape on the stack.


friction

public float friction
The friction coefficient, usually in the range [0,1].


restitution

public float restitution
The restitution (elasticity) usually in the range [0,1].


density

public float density
The density, usually in kg/m^2.


isSensor

public boolean isSensor
A sensor shape collects contact information but never generates a collision response.


filter

public final Filter filter
Contact filtering data.

Constructor Detail

FixtureDef

public FixtureDef()


Copyright © 2013. All Rights Reserved.