Searched defs:plane (Results 1 - 25 of 47) sorted by relevance

12

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DPlaneCollisionShape.java23 private Plane plane; field in class:PlaneCollisionShape
29 * Creates a plane Collision shape
30 * @param plane the plane that defines the shape
32 public PlaneCollisionShape(Plane plane) { argument
33 this.plane = plane;
38 return plane;
44 capsule.write(plane, "collisionPlane", new Plane());
50 plane
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DPlaneCollisionShape.java22 private Plane plane; field in class:PlaneCollisionShape
28 * Creates a plane Collision shape
29 * @param plane the plane that defines the shape
31 public PlaneCollisionShape(Plane plane) { argument
32 this.plane = plane;
37 return plane;
43 capsule.write(plane, "collisionPlane", new Plane());
49 plane
[all...]
/external/quake/quake/src/WinQuake/
H A Dworld.h30 qboolean allsolid; // if true, plane is not valid
35 plane_t plane; // surface normal at impact member in struct:__anon11893
H A Dgl_test.cpp27 plane_t *plane; member in struct:__anon11710
60 junk = trace.plane;
71 plane_t *plane; local
84 plane = HitPlane (r_refdef.vieworg, temp);
87 d = DotProduct (incoming, plane->normal);
89 VectorMA (p->reflect, d*2, plane->normal, p->reflect);
92 VectorCopy (plane->normal, p->normal);
H A Dr_light.cpp79 splitplane = node->plane;
146 mplane_t *plane; local
162 plane = node->plane;
163 front = DotProduct (start, plane->normal) - plane->dist;
164 back = DotProduct (end, plane->normal) - plane->dist;
H A Dgl_rlight.cpp202 splitplane = node->plane;
275 mplane_t *plane; local
291 plane = node->plane;
292 front = DotProduct (start, plane->normal) - plane->dist;
293 back = DotProduct (end, plane->normal) - plane->dist;
314 lightplane = plane;
H A Dvid_vga.cpp65 int i, j, k, plane, reps, repshift; local
83 for (plane=0 ; plane<4 ; plane++)
85 // select the correct plane for reading and writing
87 outportb (SC_DATA, 1 << plane);
89 outportb (GC_DATA, plane);
97 backingbuf[(i + k) * 24 + (j << 2) + plane] =
102 (j << 2) + plane];
136 int i, j, k, plane, rep local
[all...]
H A Dr_bsp.cpp171 // transform the BSP plane into model space
173 splitplane = pnode->plane;
180 // clip edges to BSP plane
268 // plane to both sides (but in opposite directions)
348 pplane = psurf->plane;
426 pplane = psurf->plane;
452 mplane_t *plane; local
532 plane = node->plane;
534 switch (plane
[all...]
H A Dsv_main.cpp371 mplane_t *plane; local
388 plane = node->plane;
389 d = DotProduct (org, plane->normal) - plane->dist;
/external/libvpx/examples/
H A Ddecoder_tmpl.c90 unsigned int plane, y; local
/external/quake/quake/src/QW/client/
H A Dgl_test.c27 plane_t *plane; member in struct:__anon11347
60 junk = trace.plane;
71 plane_t *plane; local
84 plane = HitPlane (r_refdef.vieworg, temp);
87 d = DotProduct (incoming, plane->normal);
89 VectorMA (p->reflect, d*2, plane->normal, p->reflect);
92 VectorCopy (plane->normal, p->normal);
H A Dpmovetst.c97 mplane_t *plane; local
105 plane = hull->planes + node->planenum;
107 if (plane->type < 3)
108 d = p[plane->type] - plane->dist;
110 d = DotProduct (plane->normal, p) - plane->dist;
130 mplane_t *plane; local
144 plane = hull->planes + node->planenum;
146 if (plane
179 mplane_t *plane; local
[all...]
H A Dr_light.c79 splitplane = node->plane;
146 mplane_t *plane; local
162 plane = node->plane;
163 front = DotProduct (start, plane->normal) - plane->dist;
164 back = DotProduct (end, plane->normal) - plane->dist;
H A Dgl_rlight.c199 splitplane = node->plane;
272 mplane_t *plane; local
288 plane = node->plane;
289 front = DotProduct (start, plane->normal) - plane->dist;
290 back = DotProduct (end, plane->normal) - plane->dist;
311 lightplane = plane;
H A Dpmove.h29 qboolean allsolid; // if true, plane is not valid
34 pmplane_t plane; // surface normal at impact member in struct:__anon11395
H A Dr_bsp.c171 // transform the BSP plane into model space
173 splitplane = pnode->plane;
180 // clip edges to BSP plane
268 // plane to both sides (but in opposite directions)
348 pplane = psurf->plane;
426 pplane = psurf->plane;
452 mplane_t *plane; local
532 plane = node->plane;
534 switch (plane
[all...]
/external/quake/quake/src/QW/server/
H A Dworld.h30 qboolean allsolid; // if true, plane is not valid
35 plane_t plane; // surface normal at impact member in struct:__anon11570
H A Dsv_ents.c41 mplane_t *plane; local
58 plane = node->plane;
59 d = DotProduct (org, plane->normal) - plane->dist;
H A Dworld.c345 splitplane = node->plane;
457 mplane_t *plane; local
465 plane = hull->planes + node->planenum;
467 if (plane->type < 3)
468 d = p[plane->type] - plane->dist;
470 d = DotProduct (plane->normal, p) - plane->dist;
536 mplane_t *plane; local
567 plane
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DVideoLayerChromium.cpp81 for (unsigned plane = 0; plane < VideoFrameChromium::maxPlanes; plane++) {
82 Texture texture = m_textures[plane];
148 for (unsigned plane = 0; plane < frame->planes(); plane++) {
149 Texture texture = m_textures[plane];
150 ASSERT(frame->requiredTextureSize(plane) == texture.size);
151 updateTexture(context, texture.id, texture.size, textureFormat, frame->data(plane));
217 computeVisibleSize(const VideoFrameChromium* frame, unsigned plane) argument
[all...]
H A DFontUtilsChromiumWin.cpp362 int plane = ucs4 >> 16; local
363 switch (plane) {
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java436 * <code>whichSide</code> takes a plane (typically provided by a view
439 * @param plane
440 * the plane to check against.
443 public Plane.Side whichSide(Plane plane) { argument
444 float distance = plane.pseudoDistance(center);
H A DBoundingVolume.java96 * Sets the index of the plane that should be first checked during rendering.
140 * lies on a plane. Possible values are POSITIVE_SIDE, NEGATIVE_SIDE, and
143 * @param plane
144 * the plane to check against this bounding volume.
147 public abstract Plane.Side whichSide(Plane plane); argument
H A DBoundingBox.java336 * <code>whichSide</code> takes a plane (typically provided by a view
339 * @param plane
340 * the plane to check against.
342 public Plane.Side whichSide(Plane plane) { argument
343 float radius = FastMath.abs(xExtent * plane.getNormal().getX())
344 + FastMath.abs(yExtent * plane.getNormal().getY())
345 + FastMath.abs(zExtent * plane.getNormal().getZ());
347 float distance = plane.pseudoDistance(center);
846 * test plane.
853 * test values of the plane
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DTempVars.java202 public final Plane plane = new Plane(); field in class:TempVars

Completed in 721 milliseconds

12