Searched refs:Plane (Results 1 - 24 of 24) sorted by relevance

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DPlaneCollisionShape.java12 import com.jme3.math.Plane;
23 private Plane plane;
32 public PlaneCollisionShape(Plane plane) {
37 public final Plane getPlane() {
44 capsule.write(plane, "collisionPlane", new Plane());
50 plane = (Plane) capsule.readSavable("collisionPlane", new Plane());
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DPlaneCollisionShape.java14 import com.jme3.math.Plane;
22 private Plane plane;
31 public PlaneCollisionShape(Plane plane) {
36 public final Plane getPlane() {
43 capsule.write(plane, "collisionPlane", new Plane());
49 plane = (Plane) capsule.readSavable("collisionPlane", new Plane());
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
H A DReflectionProcessor.java7 import com.jme3.math.Plane;
25 private Plane reflectionClipPlane;
33 public ReflectionProcessor(Camera reflectionCam, FrameBuffer reflectionBuffer, Plane reflectionClipPlane) {
65 reflectionCam.setClipPlane(reflectionClipPlane, Plane.Side.Positive);//,1
114 public Plane getReflectionClipPlane() {
122 public void setReflectionClipPlane(Plane reflectionClipPlane) {
H A DSimpleWaterProcessor.java67 * waterProcessor.setPlane(new Plane(Vector3f.UNIT_Y, waterLocation.dot(Vector3f.UNIT_Y)));
107 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() {
382 public void setPlane(Plane plane) {
576 refractionCam.setClipPlane(refractionClipPlane, Plane.Side.Negative);//,-1
H A DWaterFilter.java73 private Plane plane;
152 plane = new Plane(Vector3f.UNIT_Y, new Vector3f(0, waterHeight, 0).dot(Vector3f.UNIT_Y));
245 plane = new Plane(Vector3f.UNIT_Y, new Vector3f(0, waterHeight, 0).dot(Vector3f.UNIT_Y));
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DPlane.java40 * <code>Plane</code> defines a plane where Normal dot (x,y,z) = Constant.
48 public class Plane implements Savable, Cloneable, java.io.Serializable { class in inherits:Savable,Cloneable,java.io.Serializable
53 .getLogger(Plane.class.getName());
72 * Constructor instantiates a new <code>Plane</code> object. This is the
75 public Plane() { method in class:Plane
79 * Constructor instantiates a new <code>Plane</code> object. The normal
87 public Plane(Vector3f normal, float constant) { method in class:Plane
231 * Initialize the Plane using the given 3 points as coplanar.
251 * com.jme.math.Plane [Normal: org.jme.math.Vector3f [X=XX.XXXX, Y=YY.YYYY,
275 public Plane clon
[all...]
H A DRay.java366 * @return true if the ray collides with the given Plane
368 public boolean intersectsWherePlane(Plane p, Vector3f loc) {
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingVolume.java147 public abstract Plane.Side whichSide(Plane plane);
H A DIntersection.java35 import com.jme3.math.Plane;
270 Plane p = vars.plane;
273 if (bbox.whichSide(p) == Plane.Side.Negative) {
H A DBoundingSphere.java443 public Plane.Side whichSide(Plane plane) {
447 return Plane.Side.Negative;
449 return Plane.Side.Positive;
451 return Plane.Side.None;
H A DBoundingBox.java342 public Plane.Side whichSide(Plane plane) {
351 return Plane.Side.Negative;
353 return Plane.Side.Positive;
355 return Plane.Side.None;
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DTempVars.java200 * Plane
202 public final Plane plane = new Plane();
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestKinematicAddToPhysicsSpaceIssue.java14 import com.jme3.math.Plane;
70 Node node3 = PhysicsTestHelper.createPhysicsTestNode(assetManager, new PlaneCollisionShape(new Plane(new Vector3f(0, 1, 0), 0)), 0);
H A DTestLocalPhysics.java39 import com.jme3.math.Plane;
101 Node node3 = PhysicsTestHelper.createPhysicsTestNode(assetManager, new PlaneCollisionShape(new Plane(new Vector3f(0, 1, 0), 0)), 0);
H A DTestSimplePhysics.java39 import com.jme3.math.Plane;
96 Node node3 = PhysicsTestHelper.createPhysicsTestNode(assetManager, new PlaneCollisionShape(new Plane(new Vector3f(0, 1, 0), 0)), 0);
H A DTestPhysicsReadWrite.java44 import com.jme3.math.Plane;
108 Node node3 = PhysicsTestHelper.createPhysicsTestNode(assetManager, new PlaneCollisionShape(new Plane(new Vector3f(0, 1, 0), 0)), 0);
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DCamera.java185 protected Plane[] worldPlane;
210 worldPlane = new Plane[MAX_WORLD_PLANES];
212 worldPlane[i] = new Plane();
259 cam.worldPlane = new Plane[MAX_WORLD_PLANES];
385 public void setClipPlane(Plane clipPlane, Plane.Side side) {
387 if (side == Plane.Side.Negative) {
436 public void setClipPlane(Plane clipPlane) {
1030 Plane.Side side = bound.whichSide(worldPlane[planeId]);
1032 if (side == Plane
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/water/
H A DTestSceneWater.java111 waterProcessor.setPlane(new Plane(Vector3f.UNIT_Y, waterLocation.dot(Vector3f.UNIT_Y)));
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DSweepSphere.java51 private final Plane triPlane = new Plane();
/external/v8/benchmarks/
H A Draytrace.js467 Flog.RayTracer.Shape.Plane = Class.create();
469 Flog.RayTracer.Shape.Plane.prototype = {
513 return 'Plane [' + this.position + ', d=' + this.d + ']';
849 var plane = new Flog.RayTracer.Shape.Plane(
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-raytrace.js493 Flog.RayTracer.Shape.Plane = Class.create();
495 Flog.RayTracer.Shape.Plane.prototype = {
539 return 'Plane [' + this.position + ', d=' + this.d + ']';
875 var plane = new Flog.RayTracer.Shape.Plane(
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-raytrace.js493 Flog.RayTracer.Shape.Plane = Class.create();
495 Flog.RayTracer.Shape.Plane.prototype = {
539 return 'Plane [' + this.position + ', d=' + this.d + ']';
875 var plane = new Flog.RayTracer.Shape.Plane(
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-raytrace.js462 Flog.RayTracer.Shape.Plane = Class.create();
464 Flog.RayTracer.Shape.Plane.prototype = {
508 return 'Plane [' + this.position + ', d=' + this.d + ']';
844 var plane = new Flog.RayTracer.Shape.Plane(
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DLODGeomap.java37 import com.jme3.math.Plane;

Completed in 307 milliseconds