/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
D | CollisionShape.java | 47 protected com.bulletphysics.collision.shapes.CollisionShape cShape; field in CollisionShape 58 if (cShape == null) { in calculateLocalInertia() 64 cShape.calculateLocalInertia(mass, vector); in calculateLocalInertia() 72 return cShape; in getCShape() 78 public void setCShape(com.bulletphysics.collision.shapes.CollisionShape cShape) { in setCShape() argument 79 this.cShape = cShape; in setCShape() 84 cShape.setLocalScaling(Converter.convert(scale)); in setScale() 88 return cShape.getMargin(); in getMargin() 92 cShape.setMargin(margin); in setMargin()
|
D | CapsuleCollisionShape.java | 65 cShape=capShape; in CapsuleCollisionShape() 113 cShape=new CapsuleShapeX(radius,height); in createShape() 116 cShape=new CapsuleShape(radius,height); in createShape() 119 cShape=new CapsuleShapeZ(radius,height); in createShape() 122 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 123 cShape.setMargin(margin); in createShape()
|
D | CompoundCollisionShape.java | 61 cShape = new CompoundShape(); in CompoundCollisionShape() 73 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape()); in addChildShape() 89 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape()); in addChildShape() 99 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape()); in addChildShapeDirect() 107 ((CompoundShape) cShape).removeChildShape(shape.getCShape()); in removeChildShape() 138 cShape.setLocalScaling(Converter.convert(getScale())); in read() 139 cShape.setMargin(margin); in read()
|
D | SimplexCollisionShape.java | 74 …cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.conv… in createShape() 76 …cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.conv… in createShape() 78 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2)); in createShape() 80 cShape = new BU_Simplex1to4(Converter.convert(vector1)); in createShape() 82 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 83 cShape.setMargin(margin); in createShape()
|
D | CylinderCollisionShape.java | 104 cShape = new CylinderShapeX(Converter.convert(halfExtents)); in createShape() 107 cShape = new CylinderShape(Converter.convert(halfExtents)); in createShape() 110 cShape = new CylinderShapeZ(Converter.convert(halfExtents)); in createShape() 113 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 114 cShape.setMargin(margin); in createShape()
|
D | ConeCollisionShape.java | 68 cShape = new ConeShapeX(radius, height); in createShape() 70 cShape = new ConeShape(radius, height); in createShape() 72 cShape = new ConeShapeZ(radius, height); in createShape() 74 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 75 cShape.setMargin(margin); in createShape()
|
D | GImpactCollisionShape.java | 126 cShape = new GImpactMeshShape(tiv); in createShape() 127 cShape.setLocalScaling(Converter.convert(worldScale)); in createShape() 128 ((GImpactMeshShape)cShape).updateBound(); in createShape() 129 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 130 cShape.setMargin(margin); in createShape()
|
D | SphereCollisionShape.java | 80 cShape = new SphereShape(radius); in createShape() 81 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 82 cShape.setMargin(margin); in createShape()
|
D | BoxCollisionShape.java | 82 cShape = new BoxShape(Converter.convert(halfExtents)); in createShape() 83 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 84 cShape.setMargin(margin); in createShape()
|
D | PlaneCollisionShape.java | 54 cShape = new StaticPlaneShape(Converter.convert(plane.getNormal()),plane.getConstant()); in createShape() 55 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 56 cShape.setMargin(margin); in createShape()
|
D | HullCollisionShape.java | 62 cShape = new ConvexHullShape(pointList); in createShape() 63 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 64 cShape.setMargin(margin); in createShape()
|
D | MeshCollisionShape.java | 122 cShape = new BvhTriangleMeshShape(tiv, true); in createShape() 123 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 124 cShape.setMargin(margin); in createShape()
|
D | HeightfieldCollisionShape.java | 96 cShape = shape; in createShape() 97 cShape.setLocalScaling(Converter.convert(getScale())); in createShape() 98 cShape.setMargin(margin); in createShape()
|
/external/skia/tests/ |
D | PathOpsSimplifyRectThreadedTest.cpp | 30 int cShape = state.fC & 0x03; in testSimplify4x4RectsMain() local 108 if (cShape) { in testSimplify4x4RectsMain() 109 switch (cShape) { in testSimplify4x4RectsMain()
|