Searched refs:shape (Results 1 - 25 of 242) sorted by relevance

12345678910

/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_CapsuleCollisionShape.cpp51 btCollisionShape* shape; local
54 shape = new btCapsuleShapeX(radius, height);
57 shape = new btCapsuleShape(radius, height);
60 shape = new btCapsuleShapeZ(radius, height);
63 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_ConeCollisionShape.cpp51 btCollisionShape* shape; local
54 shape = new btConeShapeX(radius, height);
57 shape = new btConeShape(radius, height);
60 shape = new btConeShapeZ(radius, height);
63 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_CylinderCollisionShape.cpp53 btCollisionShape* shape; local
56 shape = new btCylinderShapeX(extents);
59 shape = new btCylinderShape(extents);
62 shape = new btCylinderShapeZ(extents);
65 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_CollisionShape.cpp50 btCollisionShape* shape = reinterpret_cast<btCollisionShape*>(shapeId); local
51 if (shape == NULL) {
56 return shape->getMargin();
66 btCollisionShape* shape = reinterpret_cast<btCollisionShape*>(shapeId); local
67 if (shape == NULL) {
74 shape->setLocalScaling(scl);
84 btCollisionShape* shape = reinterpret_cast<btCollisionShape*>(shapeId); local
85 if (shape == NULL) {
90 shape->setMargin(newMargin);
100 btCollisionShape* shape local
[all...]
H A Dcom_jme3_bullet_collision_shapes_CompoundCollisionShape.cpp51 btCompoundShape* shape = new btCompoundShape(); local
52 return reinterpret_cast<jlong>(shape);
62 btCompoundShape* shape = reinterpret_cast<btCompoundShape*>(compoundId); local
63 if (shape == NULL) {
69 if (shape == NULL) {
78 shape->addChildShape(trans, child);
89 btCompoundShape* shape = reinterpret_cast<btCompoundShape*>(compoundId); local
90 if (shape == NULL) {
96 if (shape == NULL) {
101 shape
[all...]
H A Dcom_jme3_bullet_collision_shapes_BoxCollisionShape.cpp53 btBoxShape* shape = new btBoxShape(extents); local
54 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_PlaneCollisionShape.cpp54 btStaticPlaneShape* shape = new btStaticPlaneShape(norm, constant); local
55 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_SphereCollisionShape.cpp51 btSphereShape* shape=new btSphereShape(radius); local
52 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_HullCollisionShape.cpp55 btConvexHullShape* shape = new btConvexHullShape(); local
61 shape->addPoint(vect);
64 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_MeshCollisionShape.cpp53 btBvhTriangleMeshShape* shape = new btBvhTriangleMeshShape(array, true, true); local
54 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_GImpactCollisionShape.cpp53 btGImpactMeshShape* shape = new btGImpactMeshShape(array); local
54 return reinterpret_cast<jlong>(shape);
H A Dcom_jme3_bullet_collision_shapes_HeightfieldCollisionShape.cpp53 btHeightfieldTerrainShape* shape=new btHeightfieldTerrainShape(heightStickWidth, heightStickLength, data, heightScale, minHeight, maxHeight, upAxis, PHY_FLOAT, flipQuadEdges); local
54 return reinterpret_cast<jlong>(shape);
/external/harfbuzz_ng/
H A DAndroid.mk34 src/hb-fallback-shape.cc \
38 src/hb-shape.cc \
39 src/hb-shape-plan.cc \
46 src/hb-ot-shape.cc \
47 src/hb-ot-shape-complex-arabic.cc \
48 src/hb-ot-shape-complex-default.cc \
49 src/hb-ot-shape-complex-indic.cc \
50 src/hb-ot-shape-complex-indic-table.cc \
51 src/hb-ot-shape-complex-myanmar.cc \
52 src/hb-ot-shape
[all...]
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
H A DChildCollisionShape.java22 public CollisionShape shape; field in class:ChildCollisionShape
27 public ChildCollisionShape(Vector3f location, Matrix3f rotation, CollisionShape shape) { argument
30 this.shape = shape;
37 capsule.write(shape, "shape", new BoxCollisionShape(new Vector3f(1, 1, 1)));
44 shape = (CollisionShape) capsule.readSavable("shape", new BoxCollisionShape(new Vector3f(1, 1, 1)));
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCompoundCollisionShape.java53 * to generate a more sophisticated shape.
65 * adds a child shape at the given local translation
66 * @param shape the child shape to add
67 * @param location the local location of the child shape
69 public void addChildShape(CollisionShape shape, Vector3f location) { argument
72 children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape));
73 ((CompoundShape) cShape).addChildShape(transA, shape.getCShape());
77 * adds a child shape at the given local translation
78 * @param shape th
81 addChildShape(CollisionShape shape, Vector3f location, Matrix3f rotation) argument
92 addChildShapeDirect(CollisionShape shape, Vector3f location, Matrix3f rotation) argument
106 removeChildShape(CollisionShape shape) argument
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCompoundCollisionShape.java50 * to generate a more sophisticated shape.
63 * adds a child shape at the given local translation
64 * @param shape the child shape to add
65 * @param location the local location of the child shape
67 public void addChildShape(CollisionShape shape, Vector3f location) { argument
70 // children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape));
71 // ((CompoundShape) objectId).addChildShape(transA, shape.getObjectId());
72 addChildShape(shape, location, new Matrix3f());
76 * adds a child shape a
80 addChildShape(CollisionShape shape, Vector3f location, Matrix3f rotation) argument
92 addChildShapeDirect(CollisionShape shape, Vector3f location, Matrix3f rotation) argument
107 removeChildShape(CollisionShape shape) argument
[all...]
/external/harfbuzz_ng/src/
H A Dgen-arabic-table.py91 shape, items = items[0][1:-1], tuple (int (x, 16) for x in items[1:])
93 if not shape in ['initial', 'medial', 'isolated', 'final']:
106 ligatures[items][shape] = c
109 # Save shape
116 shapes[items[0]][shape] = c
125 s = [shapes[u][shape] if u in shapes and shape in shapes[u] else 0
126 for shape in ['initial', 'medial', 'final', 'isolated']]
138 for shape in ligatures[pair]:
139 c = ligatures[pair][shape]
[all...]
/external/v8/src/
H A Dv8conversions.cc85 StringShape shape(str);
86 if (shape.IsSequentialAscii()) {
91 } else if (shape.IsSequentialTwoByte()) {
110 StringShape shape(str);
111 if (shape.IsSequentialAscii()) {
115 } else if (shape.IsSequentialTwoByte()) {
/external/skia/legacy/include/effects/
H A DSkGroupShape.h83 /** Return the shape at the specified index. Note this does not affect the
84 owner count of the index'd shape. If index is out of range, returns NULL
88 /** Helper function to return the matrixref of the specified shape.
96 /** Ref the specified shape, and insert it into the child list at the
97 specified index. If index == countShapes(), then the shape will be
99 shape is not added. Either way, the shape parameter is returned.
101 Child shapes are drawn in order, after the parent, so the shape at index
102 0 will be drawn first, and the shape at index countShapes() - 1 will be
107 void addShape(int index, SkShape* shape, cons argument
115 appendShape(SkShape* shape, SkMatrixRef* mr = NULL) argument
120 appendShape(SkShape* shape, const SkMatrix& matrix) argument
[all...]
/external/speex/libspeex/
H A Dcb_search_arm4.h42 //const signed char *shape;
46 //shape = shape_cb;
93 const signed char *shape=shape_cb+k;
94 resj0 = MAC16_16(resj0,*shape,r[j-k]);
95 shape += subvect_size;
96 resj1 = MAC16_16(resj1,*shape,r[j-k]);
97 shape += subvect_size;
98 resj2 = MAC16_16(resj2,*shape,r[j-k]);
99 shape += subvect_size;
100 resj3 = MAC16_16(resj3,*shape,
[all...]
/external/webkit/Source/WebCore/platform/qt/
H A DQWebPageClient.h69 if (!cursor().bitmap() && cursor().shape() == m_lastCursor.shape())
77 if (!cursor.bitmap() && cursor.shape() == this->cursor().shape())
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
H A DDebugShapeFactory.java59 * Creates a debug shape from the given collision shape. This is mostly used internally.<br>
60 * To attach a debug shape to a physics object, call <code>attachDebugShape(AssetManager manager);</code> on it.
70 CompoundCollisionShape shape = (CompoundCollisionShape) collisionShape;
71 List<ChildCollisionShape> children = shape.getChildren();
75 CollisionShape ccollisionShape = childCollisionShape.shape;
104 private static Geometry createDebugShape(CollisionShape shape) { argument
106 geom.setMesh(DebugShapeFactory.getDebugMesh(shape));
107 // geom.setLocalScale(shape.getScale());
112 public static Mesh getDebugMesh(CollisionShape shape) { argument
[all...]
/external/skia/legacy/src/effects/
H A DSkGroupShape.cpp31 void SkGroupShape::addShape(int index, SkShape* shape, SkMatrixRef* mr) { argument
33 if (NULL == shape || index < 0 || index > count) {
37 shape->ref();
46 rec->fShape = shape;
76 SkShape* shape = rec->fShape; local
78 shape->drawMatrix(canvas, *rec->fMatrixRef);
80 shape->draw(canvas);
114 SkShape* shape = reinterpret_cast<SkShape*>(buffer.readFlattenable()); local
123 if (shape) {
124 this->appendShape(shape, m
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/model/shape/
H A DTestBox.java33 package jme3test.model.shape;
39 import com.jme3.scene.shape.Box;
H A DTestCylinder.java33 package jme3test.model.shape;
39 import com.jme3.scene.shape.Cylinder;

Completed in 647 milliseconds

12345678910