Home
last modified time | relevance | path

Searched refs:spat (Results 1 – 17 of 17) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/
DTransparentComparator.java56 private float distanceToCam2(Geometry spat){ in distanceToCam2() argument
57 if (spat == null) in distanceToCam2()
60 if (spat.queueDistance != Float.NEGATIVE_INFINITY) in distanceToCam2()
61 return spat.queueDistance; in distanceToCam2()
67 if (spat.getWorldBound() != null){ in distanceToCam2()
68 spatPosition = spat.getWorldBound().getCenter(); in distanceToCam2()
70 spatPosition = spat.getWorldTranslation(); in distanceToCam2()
74 spat.queueDistance = tempVec.dot(tempVec); in distanceToCam2()
80 spat.queueDistance = tempVec.length(); in distanceToCam2()
82 return spat.queueDistance; in distanceToCam2()
[all …]
DOpaqueComparator.java50 public float distanceToCam(Geometry spat){ in distanceToCam() argument
51 if (spat == null) in distanceToCam()
54 if (spat.queueDistance != Float.NEGATIVE_INFINITY) in distanceToCam()
55 return spat.queueDistance; in distanceToCam()
61 if (spat.getWorldBound() != null){ in distanceToCam()
62 spatPosition = spat.getWorldBound().getCenter(); in distanceToCam()
64 spatPosition = spat.getWorldTranslation(); in distanceToCam()
68 spat.queueDistance = tempVec.dot(viewVector); in distanceToCam()
70 return spat.queueDistance; in distanceToCam()
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
DTerrainQuad.java1013 Spatial spat = children.get(i);
1020 if (spat instanceof TerrainQuad) {
1021 childQuadrant = ((TerrainQuad) spat).getQuadrant();
1022 } else if (spat instanceof TerrainPatch) {
1023 childQuadrant = ((TerrainPatch) spat).getQuadrant();
1041 if (spat instanceof TerrainQuad) {
1042 return ((TerrainQuad) spat).getHeightmapHeight(col, row);
1043 } else if (spat instanceof TerrainPatch) {
1044 return ((TerrainPatch) spat).getHeightmapHeight(col, row);
1058 Spatial spat = children.get(i);
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DTestCollisionShapeFactory.java119 private void randomizeTransform(Spatial spat){ in randomizeTransform() argument
120spat.setLocalTranslation((float) Math.random() * 10, (float) Math.random() * 10, (float) Math.rand… in randomizeTransform()
121spat.setLocalTranslation((float) Math.random() * 10, (float) Math.random() * 10, (float) Math.rand… in randomizeTransform()
122spat.setLocalScale((float) Math.random() * 2, (float) Math.random() * 2, (float) Math.random() * 2… in randomizeTransform()
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
DCollisionShapeFactory.java59 private static Transform getTransform(Spatial spat, Spatial parent) { in getTransform() argument
61 Spatial parentNode = spat.getParent() != null ? spat.getParent() : spat; in getTransform()
62 Spatial currentSpatial = spat; in getTransform()
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DAssetLinkNode.java101 public void attachLinkedChild(Spatial spat, ModelKey key) { in attachLinkedChild() argument
103 assetChildren.put(key, spat); in attachLinkedChild()
104 attachChild(spat); in attachLinkedChild()
DNode.java454 public boolean hasChild(Spatial spat) { in hasChild() argument
455 if (children.contains(spat)) in hasChild()
459 if (child instanceof Node && ((Node) child).hasChild(spat)) in hasChild()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
DPhysicsVehicle.java163 …public VehicleWheel addWheel(Spatial spat, Vector3f connectionPoint, Vector3f direction, Vector3f … in addWheel() argument
165 if (spat == null) { in addWheel()
168 …wheel = new VehicleWheel(spat, connectionPoint, direction, axle, suspensionRestLength, wheelRadius… in addWheel()
DVehicleWheel.java73 public VehicleWheel(Spatial spat, Vector3f location, Vector3f direction, Vector3f axle, in VehicleWheel() argument
76 wheelSpatial = spat; in VehicleWheel()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
DPhysicsSpace.java490 Spatial spat = it.next(); in addAll() local
491 addAll(spat); in addAll()
537 Spatial spat = it.next(); in removeAll() local
538 removeAll(spat); in removeAll()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
DPhysicsVehicle.java176 …public VehicleWheel addWheel(Spatial spat, Vector3f connectionPoint, Vector3f direction, Vector3f … in addWheel() argument
178 if (spat == null) { in addWheel()
181 …wheel = new VehicleWheel(spat, connectionPoint, direction, axle, suspensionRestLength, wheelRadius… in addWheel()
DVehicleWheel.java73 public VehicleWheel(Spatial spat, Vector3f location, Vector3f direction, Vector3f axle, in VehicleWheel() argument
76 wheelSpatial = spat; in VehicleWheel()
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
DPhysicsSpace.java464 Spatial spat = it.next(); in addAll() local
465 addAll(spat); in addAll()
511 Spatial spat = it.next(); in removeAll() local
512 removeAll(spat); in removeAll()
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
DTextureAtlas.java486 public static Geometry makeAtlasBatch(Spatial spat, AssetManager mgr, int atlasSize) { in makeAtlasBatch() argument
488 GeometryBatchFactory.gatherGeoms(spat, geometries); in makeAtlasBatch()
489 TextureAtlas atlas = createAtlas(spat, atlasSize); in makeAtlasBatch()
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
DSimpleWaterProcessor.java339 public void setReflectionScene(Spatial spat) { in setReflectionScene() argument
340 reflectionScene = spat; in setReflectionScene()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/
Den-US_klex.pkb1080 )K!GOA;LKsow0K!Gsow)K!7spanespareDspat3�����������������������������������������������…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/
Den-US_lexpos.utf5090 V_PAST "spat" :G2P