Home
last modified time | relevance | path

Searched refs:Plane (Results 1 – 25 of 30) sorted by relevance

12

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
DPlaneCollisionShape.java14 import com.jme3.math.Plane;
22 private Plane plane;
31 public PlaneCollisionShape(Plane plane) { in PlaneCollisionShape()
36 public final Plane getPlane() { in getPlane()
43 capsule.write(plane, "collisionPlane", new Plane()); in write()
49 plane = (Plane) capsule.readSavable("collisionPlane", new Plane()); in read()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
DPlaneCollisionShape.java12 import com.jme3.math.Plane;
23 private Plane plane;
32 public PlaneCollisionShape(Plane plane) { in PlaneCollisionShape()
37 public final Plane getPlane() { in getPlane()
44 capsule.write(plane, "collisionPlane", new Plane()); in write()
50 plane = (Plane) capsule.readSavable("collisionPlane", new Plane()); in read()
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
DReflectionProcessor.java7 import com.jme3.math.Plane;
25 private Plane reflectionClipPlane;
33 …public ReflectionProcessor(Camera reflectionCam, FrameBuffer reflectionBuffer, Plane reflectionCli… in ReflectionProcessor()
65 reflectionCam.setClipPlane(reflectionClipPlane, Plane.Side.Positive);//,1 in postQueue()
114 public Plane getReflectionClipPlane() { in getReflectionClipPlane()
122 public void setReflectionClipPlane(Plane reflectionClipPlane) { in setReflectionClipPlane()
DSimpleWaterProcessor.java107 protected Plane plane = new Plane(Vector3f.UNIT_Y, Vector3f.ZERO.dot(Vector3f.UNIT_Y));
119 private Plane reflectionClipPlane;
120 private Plane refractionClipPlane;
374 public Plane getPlane() { in getPlane()
382 public void setPlane(Plane plane) { in setPlane()
576 refractionCam.setClipPlane(refractionClipPlane, Plane.Side.Negative);//,-1 in preFrame()
DWaterFilter.java73 private Plane plane;
152 plane = new Plane(Vector3f.UNIT_Y, new Vector3f(0, waterHeight, 0).dot(Vector3f.UNIT_Y)); in preFrame()
245 plane = new Plane(Vector3f.UNIT_Y, new Vector3f(0, waterHeight, 0).dot(Vector3f.UNIT_Y)); in initFilter()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DPlane.java48 public class Plane implements Savable, Cloneable, java.io.Serializable { class
53 .getLogger(Plane.class.getName());
75 public Plane() { in Plane() method in Plane
87 public Plane(Vector3f normal, float constant) { in Plane() method in Plane
275 public Plane clone() { in clone()
277 Plane p = (Plane) super.clone(); in clone()
DRay.java368 public boolean intersectsWherePlane(Plane p, Vector3f loc) { in intersectsWherePlane()
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
DCamera.java185 protected Plane[] worldPlane;
210 worldPlane = new Plane[MAX_WORLD_PLANES]; in Camera()
212 worldPlane[i] = new Plane(); in Camera()
259 cam.worldPlane = new Plane[MAX_WORLD_PLANES]; in clone()
385 public void setClipPlane(Plane clipPlane, Plane.Side side) { in setClipPlane()
387 if (side == Plane.Side.Negative) { in setClipPlane()
436 public void setClipPlane(Plane clipPlane) { in setClipPlane()
1030 Plane.Side side = bound.whichSide(worldPlane[planeId]); in contains()
1032 if (side == Plane.Side.Negative) { in contains()
1036 } else if (side == Plane.Side.Positive) { in contains()
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DTestSimplePhysics.java39 import com.jme3.math.Plane;
96 …estHelper.createPhysicsTestNode(assetManager, new PlaneCollisionShape(new Plane(new Vector3f(0, 1,… in simpleInitApp()
DTestKinematicAddToPhysicsSpaceIssue.java14 import com.jme3.math.Plane;
70 …estHelper.createPhysicsTestNode(assetManager, new PlaneCollisionShape(new Plane(new Vector3f(0, 1,… in simpleInitApp()
DTestLocalPhysics.java39 import com.jme3.math.Plane;
101 …estHelper.createPhysicsTestNode(assetManager, new PlaneCollisionShape(new Plane(new Vector3f(0, 1,… in simpleInitApp()
DTestPhysicsReadWrite.java44 import com.jme3.math.Plane;
108 …estHelper.createPhysicsTestNode(assetManager, new PlaneCollisionShape(new Plane(new Vector3f(0, 1,… in simpleInitApp()
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
DBoundingVolume.java147 public abstract Plane.Side whichSide(Plane plane); in whichSide()
DIntersection.java35 import com.jme3.math.Plane;
270 Plane p = vars.plane; in intersect()
273 if (bbox.whichSide(p) == Plane.Side.Negative) { in intersect()
DBoundingSphere.java443 public Plane.Side whichSide(Plane plane) { in whichSide()
447 return Plane.Side.Negative; in whichSide()
449 return Plane.Side.Positive; in whichSide()
451 return Plane.Side.None; in whichSide()
DBoundingBox.java342 public Plane.Side whichSide(Plane plane) { in whichSide()
351 return Plane.Side.Negative; in whichSide()
353 return Plane.Side.Positive; in whichSide()
355 return Plane.Side.None; in whichSide()
/external/jmonkeyengine/engine/src/core/com/jme3/util/
DTempVars.java202 public final Plane plane = new Plane();
/external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Misc/
DSky.j3md1 MaterialDef Sky Plane {
/external/jmonkeyengine/engine/src/test/jme3test/water/
DTestSceneWater.java111 waterProcessor.setPlane(new Plane(Vector3f.UNIT_Y, waterLocation.dot(Vector3f.UNIT_Y))); in simpleInitApp()
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
DSweepSphere.java51 private final Plane triPlane = new Plane();
/external/v8/benchmarks/
Draytrace.js467 Flog.RayTracer.Shape.Plane = Class.create();
469 Flog.RayTracer.Shape.Plane.prototype = { class in Flog.RayTracer.Shape
849 var plane = new Flog.RayTracer.Shape.Plane(
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
Dv8-raytrace.js462 Flog.RayTracer.Shape.Plane = Class.create();
464 Flog.RayTracer.Shape.Plane.prototype = { class in Flog.RayTracer.Shape
844 var plane = new Flog.RayTracer.Shape.Plane(
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
Dv8-raytrace.js493 Flog.RayTracer.Shape.Plane = Class.create();
495 Flog.RayTracer.Shape.Plane.prototype = { class in Flog.RayTracer.Shape
875 var plane = new Flog.RayTracer.Shape.Plane(
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
Dv8-raytrace.js493 Flog.RayTracer.Shape.Plane = Class.create();
495 Flog.RayTracer.Shape.Plane.prototype = { class in Flog.RayTracer.Shape
875 var plane = new Flog.RayTracer.Shape.Plane(
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DEncodings.properties169 # CNS11643 (Plane 1-7,15), EUC encoding, Traditional Chinese

12