OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BoundingSphere
(Results
1 - 12
of
12
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
AreaUtils.java
36
import com.jme3.bounding.
BoundingSphere
;
52
*
BoundingSphere
, BoundingBox, or OrientedBoundingBox 0 is returned.
61
return calcScreenArea((
BoundingSphere
) bound, distance, screenWidth);
68
private static float calcScreenArea(
BoundingSphere
bound, float distance, float screenWidth) {
79
// Calc as if we are a
BoundingSphere
for now...
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingSphere.java
49
* <code>
BoundingSphere
</code> defines a sphere that defines a container for a
58
* @version $Id:
BoundingSphere
.java,v 1.59 2007/08/17 10:34:26 rherlitz Exp $
60
public class
BoundingSphere
extends BoundingVolume {
63
Logger.getLogger(
BoundingSphere
.class.getName());
68
* Default contstructor instantiates a new <code>
BoundingSphere
</code>
71
public
BoundingSphere
() {
75
* Constructor instantiates a new <code>
BoundingSphere
</code> object.
82
public
BoundingSphere
(float r, Vector3f c) {
386
BoundingSphere
sphere;
388
sphere = new
BoundingSphere
(1, new Vector3f(0, 0, 0));
[
all
...]
BoundingVolume.java
57
* {@link
BoundingSphere
}
267
public abstract boolean intersectsSphere(
BoundingSphere
bs);
BoundingBox.java
381
BoundingSphere
vSphere = (
BoundingSphere
) volume;
420
BoundingSphere
vSphere = (
BoundingSphere
) volume;
586
* @see BoundingVolume#intersectsSphere(com.jme3.bounding.
BoundingSphere
)
588
public boolean intersectsSphere(
BoundingSphere
bs) {
[
all
...]
/external/jmonkeyengine/engine/src/test/jme3test/collision/
TestRayCasting.java
36
import com.jme3.bounding.
BoundingSphere
;
70
q.setBound(new
BoundingSphere
());
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
UVCoordinatesGenerator.java
35
import com.jme3.bounding.
BoundingSphere
;
160
BoundingSphere
bs = UVCoordinatesGenerator.getBoundingSphere(geometries);
226
} else if (bv instanceof
BoundingSphere
) {
227
BoundingSphere
bs = (
BoundingSphere
) bv;
241
/* package */static
BoundingSphere
getBoundingSphere(List<Geometry> geometries) {
242
BoundingSphere
result = null;
244
BoundingSphere
bs = UVCoordinatesGenerator.getBoundingSphere(geometry.getMesh());
260
/* package */static
BoundingSphere
getBoundingSphere(Mesh mesh) {
267
return new
BoundingSphere
(r, bb.getCenter())
[
all
...]
UVProjectionGenerator.java
4
import com.jme3.bounding.
BoundingSphere
;
175
public static float[] sphereProjection(Mesh mesh,
BoundingSphere
bs) {
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
WireSphere.java
34
import com.jme3.bounding.
BoundingSphere
;
150
* Create a WireSphere from a
BoundingSphere
153
*
BoundingSphere
used to create the WireSphere
156
public void fromBoundingSphere(
BoundingSphere
bsph) {
/external/jmonkeyengine/engine/src/core/com/jme3/util/
SkyFactory.java
5
import com.jme3.bounding.
BoundingSphere
;
78
sky.setModelBound(new
BoundingSphere
(Float.POSITIVE_INFINITY, Vector3f.ZERO));
151
sky.setModelBound(new
BoundingSphere
(Float.POSITIVE_INFINITY, Vector3f.ZERO));
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ArrayModifier.java
4
import com.jme3.bounding.
BoundingSphere
;
150
} else if (boundingVolume instanceof
BoundingSphere
) {
151
float radius = ((
BoundingSphere
) boundingVolume).getRadius();
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHTree.java
35
import com.jme3.bounding.
BoundingSphere
;
434
if (bv instanceof
BoundingSphere
) {
435
BoundingSphere
sphere = (
BoundingSphere
) bv;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainPatch.java
36
import com.jme3.bounding.
BoundingSphere
;
[
all
...]
Completed in 275 milliseconds