/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
SimplexCollisionShape.java | 32 createShape(); 39 createShape(); 45 createShape(); 50 createShape(); 69 createShape(); 72 protected void createShape() { 74 objectId = createShape(vector1, vector2, vector3, vector4); 77 objectId = createShape(vector1, vector2, vector3); 80 objectId = createShape(vector1, vector2); 83 objectId = createShape(vector1) [all...] |
CylinderCollisionShape.java | 62 createShape(); 73 createShape(); 96 createShape(); 99 protected void createShape() { 100 objectId = createShape(axis, halfExtents); 119 private native long createShape(int axis, Vector3f halfExtents);
|
BoxCollisionShape.java | 60 createShape(); 78 createShape(); 81 protected void createShape() { 82 objectId = createShape(halfExtents); 89 private native long createShape(Vector3f halfExtents);
|
PlaneCollisionShape.java | 34 createShape(); 51 createShape(); 54 protected void createShape() { 55 objectId = createShape(plane.getNormal(), plane.getConstant()); 64 private native long createShape(Vector3f normal, float constant);
|
SphereCollisionShape.java | 59 createShape(); 76 createShape(); 79 protected void createShape() { 80 objectId = createShape(radius); 89 private native long createShape(float radius);
|
CapsuleCollisionShape.java | 62 createShape(); 75 createShape(); 104 createShape(); 107 protected void createShape(){ 108 objectId = createShape(axis, radius, height); 127 private native long createShape(int axis, float radius, float height);
|
ConeCollisionShape.java | 33 createShape(); 40 createShape(); 61 createShape(); 64 protected void createShape() { 65 objectId = createShape(axis, radius, height); 80 private native long createShape(int axis, float radius, float height);
|
HullCollisionShape.java | 26 createShape();
31 createShape();
58 createShape();
61 protected void createShape() {
78 objectId = createShape(bbuf);
84 private native long createShape(ByteBuffer points);
|
GImpactCollisionShape.java | 99 createShape();
132 createShape();
135 protected void createShape() {
152 objectId = createShape(meshId);
158 private native long createShape(long meshId);
|
HeightfieldCollisionShape.java | 93 createShape();
96 protected void createShape() {
106 objectId = createShape(heightStickWidth, heightStickLength, bbuf, heightScale, minHeight, maxHeight, upAxis, flipQuadEdges);
112 private native long createShape(int heightStickWidth, int heightStickLength, ByteBuffer heightfieldData, float heightScale, float minHeight, float maxHeight, int upAxis, boolean flipQuadEdges);
143 createShape();
|
MeshCollisionShape.java | 96 createShape();
127 createShape();
130 protected void createShape() {
145 objectId = createShape(meshId);
151 private native long createShape(long meshId);
|
CompoundCollisionShape.java | 58 objectId = createShape();//new CompoundShape(); 130 private native long createShape();
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
SimplexCollisionShape.java | 32 createShape(); 39 createShape(); 45 createShape(); 50 createShape(); 69 createShape(); 72 protected void createShape() {
|
ConeCollisionShape.java | 35 createShape(); 42 createShape(); 63 createShape(); 66 protected void createShape() {
|
CylinderCollisionShape.java | 64 createShape(); 75 createShape(); 98 createShape(); 101 protected void createShape() {
|
BoxCollisionShape.java | 60 createShape(); 78 createShape(); 81 protected void createShape() {
|
PlaneCollisionShape.java | 33 createShape(); 50 createShape(); 53 protected void createShape() {
|
SphereCollisionShape.java | 59 createShape(); 76 createShape(); 79 protected void createShape() {
|
CapsuleCollisionShape.java | 78 createShape(); 107 createShape(); 110 protected void createShape(){
|
HullCollisionShape.java | 25 createShape(this.points); 30 createShape(this.points); 54 createShape(this.points); 57 protected void createShape(float[] points) {
|
MeshCollisionShape.java | 77 createShape(); 109 createShape(); 112 protected void createShape() {
|
GImpactCollisionShape.java | 79 createShape(); 113 createShape(); 116 protected void createShape() {
|
HeightfieldCollisionShape.java | 89 createShape(); 92 protected void createShape() { 130 createShape();
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
Shape.h | 63 static PassOwnPtr<Shape> createShape(const BasicShape*, const LayoutSize& logicalBoxSize, WritingMode, Length margin, Length padding); 64 static PassOwnPtr<Shape> createShape(const StyleImage*, float threshold, const LayoutSize& logicalBoxSize, WritingMode, Length margin, Length padding);
|
ShapeInfo.cpp | 65 m_shape = Shape::createShape(shapeValue->shape(), m_shapeLogicalSize, writingMode, margin, padding); 69 m_shape = Shape::createShape(shapeValue->image(), shapeImageThreshold, m_shapeLogicalSize, writingMode, margin, padding);
|