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

123456789

/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.mk62 src/hb-shape.cc \
63 src/hb-shape-plan.cc \
70 src/hb-ot-shape.cc \
71 src/hb-ot-shape-complex-arabic.cc \
72 src/hb-ot-shape-complex-default.cc \
73 src/hb-ot-shape-complex-hangul.cc \
74 src/hb-ot-shape-complex-hebrew.cc \
75 src/hb-ot-shape-complex-indic.cc \
76 src/hb-ot-shape-complex-indic-table.cc \
77 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/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...]
H A Dcb_search_sse.h59 VARDECL(__m128 *shape);
61 ALLOC(shape, subvect_size, __m128);
71 shape[j] = _mm_setr_ps(0.03125*_shape[j], 0.03125*_shape[subvect_size+j], 0.03125*_shape[2*subvect_size+j], 0.03125*_shape[3*subvect_size+j]);
77 resj = _mm_add_ps(resj, _mm_mul_ps(shape[k],r[j-k]));
/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/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DWeibullDistributionImpl.java46 /** The shape parameter. */
47 private double shape; field in class:WeibullDistributionImpl
68 * Creates weibull distribution with the given shape and scale and a
70 * @param alpha the shape parameter.
78 * Creates weibull distribution with the given shape, scale and inverse
80 * @param alpha the shape parameter.
103 ret = 1.0 - FastMath.exp(-FastMath.pow(x / scale, shape));
109 * Access the shape parameter.
110 * @return the shape parameter.
113 return shape;
[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;
H A DTestExpandingTorus.java5 package jme3test.model.shape;
10 import com.jme3.scene.shape.Torus;
H A DTestSphere.java33 package jme3test.model.shape;
39 import com.jme3.scene.shape.Sphere;
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_median_filter.h59 enum vl_median_filter_shape shape);

Completed in 346 milliseconds

123456789