Searched refs:cShape (Results 1 - 14 of 14) sorted by relevance

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCollisionShape.java47 protected com.bulletphysics.collision.shapes.CollisionShape cShape; field in class:CollisionShape
58 if (cShape == null) {
64 cShape.calculateLocalInertia(mass, vector);
72 return cShape;
78 public void setCShape(com.bulletphysics.collision.shapes.CollisionShape cShape) { argument
79 this.cShape = cShape;
84 cShape.setLocalScaling(Converter.convert(scale));
88 return cShape.getMargin();
92 cShape
[all...]
H A DCapsuleCollisionShape.java65 cShape=capShape;
113 cShape=new CapsuleShapeX(radius,height);
116 cShape=new CapsuleShape(radius,height);
119 cShape=new CapsuleShapeZ(radius,height);
122 cShape.setLocalScaling(Converter.convert(getScale()));
123 cShape.setMargin(margin);
H A DConeCollisionShape.java68 cShape = new ConeShapeX(radius, height);
70 cShape = new ConeShape(radius, height);
72 cShape = new ConeShapeZ(radius, height);
74 cShape.setLocalScaling(Converter.convert(getScale()));
75 cShape.setMargin(margin);
H A DCylinderCollisionShape.java104 cShape = new CylinderShapeX(Converter.convert(halfExtents));
107 cShape = new CylinderShape(Converter.convert(halfExtents));
110 cShape = new CylinderShapeZ(Converter.convert(halfExtents));
113 cShape.setLocalScaling(Converter.convert(getScale()));
114 cShape.setMargin(margin);
H A DSimplexCollisionShape.java74 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.convert(vector3), Converter.convert(vector4));
76 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.convert(vector3));
78 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2));
80 cShape = new BU_Simplex1to4(Converter.convert(vector1));
82 cShape.setLocalScaling(Converter.convert(getScale()));
83 cShape.setMargin(margin);
H A DBoxCollisionShape.java82 cShape = new BoxShape(Converter.convert(halfExtents));
83 cShape.setLocalScaling(Converter.convert(getScale()));
84 cShape.setMargin(margin);
H A DPlaneCollisionShape.java54 cShape = new StaticPlaneShape(Converter.convert(plane.getNormal()),plane.getConstant());
55 cShape.setLocalScaling(Converter.convert(getScale()));
56 cShape.setMargin(margin);
H A DSphereCollisionShape.java80 cShape = new SphereShape(radius);
81 cShape.setLocalScaling(Converter.convert(getScale()));
82 cShape.setMargin(margin);
H A DCompoundCollisionShape.java61 cShape = new CompoundShape();
73 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape());
89 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape());
99 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape());
107 ((CompoundShape) cShape).removeChildShape(shape.getCShape());
138 cShape.setLocalScaling(Converter.convert(getScale()));
139 cShape.setMargin(margin);
H A DGImpactCollisionShape.java126 cShape = new GImpactMeshShape(tiv);
127 cShape.setLocalScaling(Converter.convert(worldScale));
128 ((GImpactMeshShape)cShape).updateBound();
129 cShape.setLocalScaling(Converter.convert(getScale()));
130 cShape.setMargin(margin);
H A DHullCollisionShape.java62 cShape = new ConvexHullShape(pointList);
63 cShape.setLocalScaling(Converter.convert(getScale()));
64 cShape.setMargin(margin);
H A DMeshCollisionShape.java122 cShape = new BvhTriangleMeshShape(tiv, true);
123 cShape.setLocalScaling(Converter.convert(getScale()));
124 cShape.setMargin(margin);
H A DHeightfieldCollisionShape.java96 cShape = shape;
97 cShape.setLocalScaling(Converter.convert(getScale()));
98 cShape.setMargin(margin);
/external/skia/tests/
H A DPathOpsSimplifyRectThreadedTest.cpp30 int cShape = state.fC & 0x03; local
108 if (cShape) {
109 switch (cShape) {

Completed in 157 milliseconds