Searched refs:createShape (Results 1 - 25 of 26) sorted by relevance

12

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DSimplexCollisionShape.java32 createShape();
39 createShape();
45 createShape();
50 createShape();
69 createShape();
72 protected void createShape() { method in class:SimplexCollisionShape
74 objectId = createShape(vector1, vector2, vector3, vector4);
77 objectId = createShape(vector1, vector2, vector3);
80 objectId = createShape(vector1, vector2);
83 objectId = createShape(vector
93 private native long createShape(Vector3f vector1); method in class:SimplexCollisionShape
95 private native long createShape(Vector3f vector1, Vector3f vector2); method in class:SimplexCollisionShape
97 private native long createShape(Vector3f vector1, Vector3f vector2, Vector3f vector3); method in class:SimplexCollisionShape
99 private native long createShape(Vector3f vector1, Vector3f vector2, Vector3f vector3, Vector3f vector4); method in class:SimplexCollisionShape
[all...]
H A DCylinderCollisionShape.java62 createShape();
73 createShape();
96 createShape();
99 protected void createShape() { method in class:CylinderCollisionShape
100 objectId = createShape(axis, halfExtents);
119 private native long createShape(int axis, Vector3f halfExtents); method in class:CylinderCollisionShape
H A DBoxCollisionShape.java60 createShape();
78 createShape();
81 protected void createShape() { method in class:BoxCollisionShape
82 objectId = createShape(halfExtents);
89 private native long createShape(Vector3f halfExtents); method in class:BoxCollisionShape
H A DPlaneCollisionShape.java34 createShape();
51 createShape();
54 protected void createShape() { method in class:PlaneCollisionShape
55 objectId = createShape(plane.getNormal(), plane.getConstant());
64 private native long createShape(Vector3f normal, float constant); method in class:PlaneCollisionShape
H A DSphereCollisionShape.java59 createShape();
76 createShape();
79 protected void createShape() { method in class:SphereCollisionShape
80 objectId = createShape(radius);
89 private native long createShape(float radius); method in class:SphereCollisionShape
H A DCapsuleCollisionShape.java62 createShape();
75 createShape();
104 createShape();
107 protected void createShape(){ method in class:CapsuleCollisionShape
108 objectId = createShape(axis, radius, height);
127 private native long createShape(int axis, float radius, float height); method in class:CapsuleCollisionShape
H A DConeCollisionShape.java33 createShape();
40 createShape();
61 createShape();
64 protected void createShape() { method in class:ConeCollisionShape
65 objectId = createShape(axis, radius, height);
80 private native long createShape(int axis, float radius, float height); method in class:ConeCollisionShape
H A DHullCollisionShape.java26 createShape();
31 createShape();
58 createShape();
61 protected void createShape() { method in class:HullCollisionShape
78 objectId = createShape(bbuf);
84 private native long createShape(ByteBuffer points); method in class:HullCollisionShape
H A DGImpactCollisionShape.java99 createShape();
132 createShape();
135 protected void createShape() { method in class:GImpactCollisionShape
152 objectId = createShape(meshId);
158 private native long createShape(long meshId); method in class:GImpactCollisionShape
H A DHeightfieldCollisionShape.java93 createShape();
96 protected void createShape() { method in class:HeightfieldCollisionShape
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); method in class:HeightfieldCollisionShape
143 createShape();
H A DMeshCollisionShape.java96 createShape();
127 createShape();
130 protected void createShape() { method in class:MeshCollisionShape
145 objectId = createShape(meshId);
151 private native long createShape(long meshId); method in class:MeshCollisionShape
H A DCompoundCollisionShape.java58 objectId = createShape();//new CompoundShape();
130 private native long createShape(); method in class:CompoundCollisionShape
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DSimplexCollisionShape.java32 createShape();
39 createShape();
45 createShape();
50 createShape();
69 createShape();
72 protected void createShape() { method in class:SimplexCollisionShape
H A DConeCollisionShape.java35 createShape();
42 createShape();
63 createShape();
66 protected void createShape() { method in class:ConeCollisionShape
H A DCylinderCollisionShape.java64 createShape();
75 createShape();
98 createShape();
101 protected void createShape() { method in class:CylinderCollisionShape
H A DBoxCollisionShape.java60 createShape();
78 createShape();
81 protected void createShape() { method in class:BoxCollisionShape
H A DPlaneCollisionShape.java33 createShape();
50 createShape();
53 protected void createShape() { method in class:PlaneCollisionShape
H A DSphereCollisionShape.java59 createShape();
76 createShape();
79 protected void createShape() { method in class:SphereCollisionShape
H A DCapsuleCollisionShape.java78 createShape();
107 createShape();
110 protected void createShape(){ method in class:CapsuleCollisionShape
H A DHullCollisionShape.java25 createShape(this.points);
30 createShape(this.points);
54 createShape(this.points);
57 protected void createShape(float[] points) { method in class:HullCollisionShape
H A DMeshCollisionShape.java77 createShape();
109 createShape();
112 protected void createShape() { method in class:MeshCollisionShape
H A DGImpactCollisionShape.java79 createShape();
113 createShape();
116 protected void createShape() { method in class:GImpactCollisionShape
H A DHeightfieldCollisionShape.java89 createShape();
92 protected void createShape() { method in class:HeightfieldCollisionShape
130 createShape();
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShape.h62 static PassOwnPtr<Shape> createShape(const BasicShape*, const LayoutSize& logicalBoxSize, WritingMode, Length margin, Length padding);
H A DShapeInfo.cpp49 m_shape = Shape::createShape(shape, LayoutSize(m_shapeLogicalWidth, m_shapeLogicalHeight), m_renderer->style()->writingMode(), m_renderer->style()->shapeMargin(), m_renderer->style()->shapePadding());

Completed in 243 milliseconds

12