OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BIHNode
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHNode.java
56
public final class
BIHNode
implements Savable {
59
private
BIHNode
left;
60
private
BIHNode
right;
65
//Do not do this: It increases memory usage of each
BIHNode
by at least 56 bytes!
69
public
BIHNode
(int l, int r) {
75
public
BIHNode
(int axis) {
79
public
BIHNode
() {
82
public
BIHNode
getLeftChild() {
86
public void setLeftChild(
BIHNode
left) {
98
public
BIHNode
getRightChild()
[
all
...]
BIHTree.java
65
private
BIHNode
root;
214
// private
BIHNode
createNode2(int l, int r, BoundingBox nodeBbox, int depth){
274
//
BIHNode
node = new
BIHNode
(axis);
291
private
BIHNode
createNode(int l, int r, BoundingBox nodeBbox, int depth) {
293
return new
BIHNode
(l, r);
340
BIHNode
node = new
BIHNode
(axis);
477
root = (
BIHNode
) ic.readSavable("root", null);
/external/jmonkeyengine/engine/src/core/com/jme3/util/
TempVars.java
34
import com.jme3.collision.bih.
BIHNode
.BIHStackData;
Completed in 172 milliseconds