OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minTrisPerNode
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
Octree.java
58
private final int
minTrisPerNode
;
80
public Octree(Spatial scene, int
minTrisPerNode
){
99
this.
minTrisPerNode
=
minTrisPerNode
;
122
root.subdivide(
minTrisPerNode
);
Octnode.java
112
public void subdivide(int depth, int
minTrisPerNode
){
113
if (tris == null || depth > 50 || bbox.getVolume() < 0.01f || tris.size() <
minTrisPerNode
){
164
children[i].subdivide(depth + 1,
minTrisPerNode
);
169
public void subdivide(int
minTrisPerNode
){
170
subdivide(0,
minTrisPerNode
);
Completed in 49 milliseconds