OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:halfExtents
(Results
1 - 5
of
5
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
BoxCollisionShape.java
49
private Vector3f
halfExtents
;
55
* creates a collision box from the given
halfExtents
56
* @param
halfExtents
the
halfExtents
of the CollisionBox
58
public BoxCollisionShape(Vector3f
halfExtents
) {
59
this.
halfExtents
=
halfExtents
;
64
return
halfExtents
;
70
capsule.write(
halfExtents
, "
halfExtents
", new Vector3f(1, 1, 1))
[
all
...]
CylinderCollisionShape.java
49
protected Vector3f
halfExtents
;
56
* creates a cylinder shape from the given
halfextents
57
* @param
halfExtents
the
halfextents
to use
59
public CylinderCollisionShape(Vector3f
halfExtents
) {
60
this.
halfExtents
=
halfExtents
;
66
* Creates a cylinder shape around the given axis from the given
halfextents
67
* @param
halfExtents
the
halfextents
to us
[
all
...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
BoxCollisionShape.java
49
private Vector3f
halfExtents
;
55
* creates a collision box from the given
halfExtents
56
* @param
halfExtents
the
halfExtents
of the CollisionBox
58
public BoxCollisionShape(Vector3f
halfExtents
) {
59
this.
halfExtents
=
halfExtents
;
64
return
halfExtents
;
70
capsule.write(
halfExtents
, "
halfExtents
", new Vector3f(1, 1, 1))
[
all
...]
CylinderCollisionShape.java
51
protected Vector3f
halfExtents
;
58
* creates a cylinder shape from the given
halfextents
59
* @param
halfExtents
the
halfextents
to use
61
public CylinderCollisionShape(Vector3f
halfExtents
) {
62
this.
halfExtents
=
halfExtents
;
68
* Creates a cylinder shape around the given axis from the given
halfextents
69
* @param
halfExtents
the
halfextents
to us
[
all
...]
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestGhostObject.java
105
Vector3f
halfExtents
= new Vector3f(3, 4.2f, 1);
106
ghostControl = new GhostControl(new BoxCollisionShape(
halfExtents
));
Completed in 2441 milliseconds