Home | History | Annotate | Download | only in shapes

Lines Matching refs:radius

49     protected float radius,height;
56 * creates a new CapsuleCollisionShape with the given radius and height
57 * @param radius the radius of the capsule
60 public CapsuleCollisionShape(float radius, float height) {
61 this.radius=radius;
64 CapsuleShape capShape=new CapsuleShape(radius,height);
70 * @param radius
74 public CapsuleCollisionShape(float radius, float height, int axis) {
75 this.radius=radius;
82 return radius;
96 capsule.write(radius, "radius", 0.5f);
104 radius = capsule.readFloat("radius", 0.5f);
113 cShape=new CapsuleShapeX(radius,height);
116 cShape=new CapsuleShape(radius,height);
119 cShape=new CapsuleShapeZ(radius,height);