OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:convexshape
(Results
1 - 7
of
7
) sorted by null
/external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_util_DebugShapeFactory.cpp
100
btConvexShape*
convexShape
= reinterpret_cast<btConvexShape*>(shape);
102
if (
convexShape
->getUserPointer() == NULL) {
104
btShapeHull* hull = new btShapeHull(
convexShape
);
105
float margin =
convexShape
->getMargin();
107
convexShape
->setUserPointer(hull);
110
btShapeHull* hull = (btShapeHull*)
convexShape
->getUserPointer();
146
convexShape
->setUserPointer(NULL);
com_jme3_bullet_objects_PhysicsCharacter.cpp
88
//TODO: check
convexshape
!
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
DebugShapeFactory.java
35
import com.bulletphysics.collision.shapes.
ConvexShape
;
124
if (shape.getCShape() instanceof
ConvexShape
) {
126
mesh.setBuffer(Type.Position, 3, getVertices((
ConvexShape
) shape.getCShape()));
155
* @param
convexShape
the shape to retreieve the vertices from.
158
private static FloatBuffer getVertices(
ConvexShape
convexShape
) {
160
if (
convexShape
.getUserPointer() == null) {
162
ShapeHull hull = new ShapeHull(
convexShape
);
163
float margin =
convexShape
.getMargin();
165
convexShape
.setUserPointer(hull)
[
all
...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsCharacter.java
36
import com.bulletphysics.collision.shapes.
ConvexShape
;
80
if (!(shape.getCShape() instanceof
ConvexShape
)) {
95
character = new KinematicCharacterController(gObject, (
ConvexShape
) collisionShape.getCShape(), stepHeight);
182
if (!(collisionShape.getCShape() instanceof
ConvexShape
)) {
280
character = new KinematicCharacterController(gObject, (
ConvexShape
) collisionShape.getCShape(), stepHeight);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
PhysicsSpace.java
43
import com.bulletphysics.collision.shapes.
ConvexShape
;
693
if (!(shape.getCShape() instanceof
ConvexShape
)) {
697
dynamicsWorld.convexSweepTest((
ConvexShape
) shape.getCShape(), Converter.convert(start, sweepTrans1), Converter.convert(end, sweepTrans2), new InternalSweepListener(results));
709
if (!(shape.getCShape() instanceof
ConvexShape
)) {
713
dynamicsWorld.convexSweepTest((
ConvexShape
) shape.getCShape(), Converter.convert(start, sweepTrans1), Converter.convert(end, sweepTrans2), new InternalSweepListener(results));
[
all
...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
PhysicsSpace.java
[
all
...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsCharacter.java
202
// if (!(collisionShape.getObjectId() instanceof
ConvexShape
)) {
Completed in 153 milliseconds