OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:btDbvt
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvt.cpp
15
///
btDbvt
implementation by Nathanael Presson
17
#include "
btDbvt
.h"
24
struct btDbvtNodeEnumerator :
btDbvt
::ICollide
70
static DBVT_INLINE void deletenode(
btDbvt
* pdbvt,
78
static void recursedeletenode(
btDbvt
* pdbvt,
91
static DBVT_INLINE btDbvtNode* createnode(
btDbvt
* pdbvt,
107
static DBVT_INLINE btDbvtNode* createnode(
btDbvt
* pdbvt,
118
static DBVT_INLINE btDbvtNode* createnode(
btDbvt
* pdbvt,
130
static void insertleaf(
btDbvt
* pdbvt,
174
static btDbvtNode* removeleaf(
btDbvt
* pdbvt
[
all
...]
btDbvt.h
15
///
btDbvt
implementation by Nathanael Presson
191
///The
btDbvt
class implements a fast dynamic bounding volume tree based on axis aligned bounding boxes (aabb tree).
192
///This
btDbvt
is used for soft body collision detection and for the btDbvtBroadphase. It has a fast insert, remove and update of nodes.
194
struct
btDbvt
270
btDbvt
();
271
~
btDbvt
();
285
void clone(
btDbvt
& dest,IClone* iclone=0) const;
366
static DBVT_INLINE int nearest(const int* i,const
btDbvt
::sStkNPS* a,btScalar v,int l,int h)
389
btDbvt
(const
btDbvt
&) {}
[
all
...]
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btDbvt.java
18
public class
btDbvt
extends BulletBase {
21
protected
btDbvt
(final String className, long cPtr, boolean cMemoryOwn) {
26
/** Construct a new
btDbvt
, normally you should not need this constructor it's intended for low-level usage. */
27
public
btDbvt
(long cPtr, boolean cMemoryOwn) {
28
this("
btDbvt
", cPtr, cMemoryOwn);
39
public static long getCPtr(
btDbvt
obj) {
505
public
btDbvt
() {
565
public void write(
btDbvt
.IWriter iwriter) {
566
CollisionJNI.btDbvt_write(swigCPtr, this,
btDbvt
.IWriter.getCPtr(iwriter), iwriter);
569
public void clone(
btDbvt
dest, btDbvt.IClone iclone)
[
all
...]
Completed in 1765 milliseconds