Home
last modified time | relevance | path

Searched defs:shape (Results 1 – 25 of 110) sorted by relevance

12345

/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
Dworld.js67 function verifyShapeDescription(shape) { argument
102 function verifyCubeDescription(shape) { argument
115 function verifySphereDescription(shape) { argument
122 function verifyCylinderDescription(shape) { argument
132 function verifyConvexDescription(shape) { argument
Dbox.json13 "shape": "box", string
28 "shape": "box", string
43 "shape": "box", string
58 "shape": "box", string
73 "shape": "box", string
88 "shape": "box", string
103 "shape": "box", string
118 "shape": "box", string
133 "shape": "box", string
148 "shape": "box", string
[all …]
/external/jmonkeyengine/engine/src/bullet-native/
Dcom_jme3_bullet_collision_shapes_CollisionShape.cpp50 btCollisionShape* shape = reinterpret_cast<btCollisionShape*>(shapeId); in Java_com_jme3_bullet_collision_shapes_CollisionShape_getMargin() local
66 btCollisionShape* shape = reinterpret_cast<btCollisionShape*>(shapeId); in Java_com_jme3_bullet_collision_shapes_CollisionShape_setLocalScaling() local
84 btCollisionShape* shape = reinterpret_cast<btCollisionShape*>(shapeId); in Java_com_jme3_bullet_collision_shapes_CollisionShape_setMargin() local
100 btCollisionShape* shape = reinterpret_cast<btCollisionShape*>(shapeId); in Java_com_jme3_bullet_collision_shapes_CollisionShape_finalizeNative() local
Dcom_jme3_bullet_collision_shapes_CompoundCollisionShape.cpp51 btCompoundShape* shape = new btCompoundShape(); in Java_com_jme3_bullet_collision_shapes_CompoundCollisionShape_createShape() local
62 btCompoundShape* shape = reinterpret_cast<btCompoundShape*>(compoundId); in Java_com_jme3_bullet_collision_shapes_CompoundCollisionShape_addChildShape() local
89 btCompoundShape* shape = reinterpret_cast<btCompoundShape*>(compoundId); in Java_com_jme3_bullet_collision_shapes_CompoundCollisionShape_removeChildShape() local
Dcom_jme3_bullet_collision_shapes_SphereCollisionShape.cpp51 btSphereShape* shape=new btSphereShape(radius); in Java_com_jme3_bullet_collision_shapes_SphereCollisionShape_createShape() local
Dcom_jme3_bullet_collision_shapes_BoxCollisionShape.cpp53 btBoxShape* shape = new btBoxShape(extents); in Java_com_jme3_bullet_collision_shapes_BoxCollisionShape_createShape() local
Dcom_jme3_bullet_collision_shapes_ConeCollisionShape.cpp51 btCollisionShape* shape; in Java_com_jme3_bullet_collision_shapes_ConeCollisionShape_createShape() local
Dcom_jme3_bullet_collision_shapes_PlaneCollisionShape.cpp54 btStaticPlaneShape* shape = new btStaticPlaneShape(norm, constant); in Java_com_jme3_bullet_collision_shapes_PlaneCollisionShape_createShape() local
Dcom_jme3_bullet_collision_shapes_CylinderCollisionShape.cpp53 btCollisionShape* shape; in Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape() local
Dcom_jme3_bullet_collision_shapes_CapsuleCollisionShape.cpp51 btCollisionShape* shape; in Java_com_jme3_bullet_collision_shapes_CapsuleCollisionShape_createShape() local
Dcom_jme3_bullet_collision_shapes_HullCollisionShape.cpp55 btConvexHullShape* shape = new btConvexHullShape(); in Java_com_jme3_bullet_collision_shapes_HullCollisionShape_createShape() local
Dcom_jme3_bullet_collision_shapes_GImpactCollisionShape.cpp53 btGImpactMeshShape* shape = new btGImpactMeshShape(array); in Java_com_jme3_bullet_collision_shapes_GImpactCollisionShape_createShape() local
Dcom_jme3_bullet_collision_shapes_MeshCollisionShape.cpp53 btBvhTriangleMeshShape* shape = new btBvhTriangleMeshShape(array, true, true); in Java_com_jme3_bullet_collision_shapes_MeshCollisionShape_createShape() local
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
DCompoundCollisionShape.java69 public void addChildShape(CollisionShape shape, Vector3f location) { in addChildShape()
81 public void addChildShape(CollisionShape shape, Vector3f location, Matrix3f rotation) { in addChildShape()
92 private void addChildShapeDirect(CollisionShape shape, Vector3f location, Matrix3f rotation) { in addChildShapeDirect()
106 public void removeChildShape(CollisionShape shape) { in removeChildShape()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
DCompoundCollisionShape.java67 public void addChildShape(CollisionShape shape, Vector3f location) { in addChildShape()
80 public void addChildShape(CollisionShape shape, Vector3f location, Matrix3f rotation) { in addChildShape()
92 private void addChildShapeDirect(CollisionShape shape, Vector3f location, Matrix3f rotation) { in addChildShapeDirect()
107 public void removeChildShape(CollisionShape shape) { in removeChildShape()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
DDebugShapeFactory.java70 CompoundCollisionShape shape = (CompoundCollisionShape) collisionShape; in getDebugShape() local
104 private static Geometry createDebugShape(CollisionShape shape) { in createDebugShape()
112 public static Mesh getDebugMesh(CollisionShape shape) { in getDebugMesh()
/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimatableShapeValue.h42 static PassRefPtr<AnimatableShapeValue> create(ShapeValue* shape) in create()
52 AnimatableShapeValue(ShapeValue* shape) in AnimatableShapeValue()
DAnimatableShapeValue.cpp54 const ShapeValue* shape = toAnimatableShapeValue(value)->m_shape.get(); in equalTo() local
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DShapeValue.h51 static PassRefPtr<ShapeValue> createShapeValue(PassRefPtr<BasicShape> shape) in createShapeValue()
72 BasicShape* shape() const { return m_shape.get(); } in shape() function
88 ShapeValue(PassRefPtr<BasicShape> shape) in ShapeValue()
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
DChildCollisionShape.java22 public CollisionShape shape; field in ChildCollisionShape
27 public ChildCollisionShape(Vector3f location, Matrix3f rotation, CollisionShape shape) { in ChildCollisionShape()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
DDebugShapeFactory.java79 CompoundCollisionShape shape = (CompoundCollisionShape) collisionShape; in getDebugShape() local
114 private static Geometry createDebugShape(CollisionShape shape) { in createDebugShape()
122 public static Mesh getDebugMesh(CollisionShape shape) { in getDebugMesh()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DClipPathOperation.h97 static PassRefPtr<ShapeClipPathOperation> create(PassRefPtr<BasicShape> shape) in create()
119 ShapeClipPathOperation(PassRefPtr<BasicShape> shape) in ShapeClipPathOperation()
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
DCollisionShapeFactory.java81 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate, boolean dynamic) { in createCompoundShape()
133 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate) { in createCompoundShape()
230 BoxCollisionShape shape = new BoxCollisionShape( in createSingleBoxShape() local
/external/v8/src/
Dv8conversions.cc85 StringShape shape(str); in StringToDouble() local
110 StringShape shape(str); in StringToInt() local
/external/chromium_org/v8/src/
Dv8conversions.cc85 StringShape shape(str); in StringToDouble() local
112 StringShape shape(str); in StringToInt() local

12345