HomeSort by relevance Sort by last modified time
    Searched refs:vect2 (Results 1 - 25 of 27) sorted by null

1 2

  /external/stlport/test/unit/
config_test.cpp 73 vector<int> vect2(10, 0);
74 int* pvect2Front = &vect2.front();
76 swap(vect1, vect2);
79 CPPUNIT_ASSERT( pvect1Front == &vect2.front() );
82 CPPUNIT_ASSERT( pvect1Front != &vect2.front() );
  /ndk/tests/device/test-gnustl-full/unit/
config_test.cpp 73 vector<int> vect2(10, 0);
74 int* pvect2Front = &vect2.front();
76 swap(vect1, vect2);
79 CPPUNIT_ASSERT( pvect1Front == &vect2.front() );
82 CPPUNIT_ASSERT( pvect1Front != &vect2.front() );
  /ndk/tests/device/test-stlport/unit/
config_test.cpp 73 vector<int> vect2(10, 0);
74 int* pvect2Front = &vect2.front();
76 swap(vect1, vect2);
79 CPPUNIT_ASSERT( pvect1Front == &vect2.front() );
82 CPPUNIT_ASSERT( pvect1Front != &vect2.front() );
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingBox.java 126 Vector3f max = vars.vect2.set(new Vector3f(Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY));
156 Vector3f vect2 = vars.vect2; local
160 Vector3f max = vect2.set(Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY);
292 transMatrix.mult(vars.vect1, vars.vect2);
294 box.xExtent = FastMath.abs(vars.vect2.getX());
295 box.yExtent = FastMath.abs(vars.vect2.getY());
296 box.zExtent = FastMath.abs(vars.vect2.getZ());
511 vars.vect2.x = center.x + xExtent;
512 if (vars.vect2.x < boxCenter.x + boxX) {
    [all...]
Intersection.java 94 tmp1 = vars.vect2,
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
TempVars.java 165 public final Vector3f vect2 = new Vector3f(); field in class:TempVars
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Line.java 115 Vector3f compVec2 = vars.vect2;
138 Vector3f compVec2 = vars.vect2;
Ray.java 205 tempVb = vars.vect2,
408 tempVb = vars.vect2;
Quaternion.java     [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
SimpleWaterProcessor.java 124 private Vector3f vect2 = new Vector3f(); field in class:SimpleWaterProcessor
221 vect2.set(plane.getNormal()).multLocal(planeDistance * 2.0f);
222 vect3.set(vect1.subtractLocal(vect2)).subtractLocal(loc).normalizeLocal().negateLocal();
WaterFilter.java 173 vars.vect2.set(plane.getNormal()).multLocal(planeDistance * 2.0f);
174 vars.vect3.set(vars.vect1.subtractLocal(vars.vect2)).subtractLocal(loc).normalizeLocal().negateLocal();
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHNode.java 247 v2 = vars.vect2,
310 Vector3f d = vars.vect2.set(r.getDirection());
BIHTree.java 145 Vector3f max = vars.vect2.set(new Vector3f(Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY, Float.NEGATIVE_INFINITY));
174 v2 = vars.vect2,
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 199 Vector3f tempS = vars.vect2;
Skeleton.java 249 boneList[i].getOffsetTransform(skinningMatrixes[i], vars.quat1, vars.vect1, vars.vect2, vars.tempMat3);
SpatialTrack.java 72 Vector3f tempS = vars.vect2;
Bone.java 534 Vector3f tmpV2 = vars.vect2;
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
MotionPath.java 82 Vector3f tmpVector = vars.vect2;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Dome.java 224 Vector3f tempVb = vars.vect2;
Sphere.java 180 Vector3f tempVb = vars.vect2;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
BatchNode.java 511 Vector3f norm = vars.vect2;
555 Vector3f norm = vars.vect2;
  /external/opencv/cv/include/
cvcompat.h 412 CvPoint2D32f* vect2 )
422 vect2->x = pt[3].x - pt[0].x;
423 vect2->y = pt[3].y - pt[0].y;
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleEmitter.java 877 Vector3f max = vars.vect2;
976 Vector3f max = vars.vect2.set(Vector3f.NEGATIVE_INFINITY);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java 816 Vector3f newUp = vars.vect2;
    [all...]
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
KinematicRagdollControl.java 224 Vector3f position2 = vars.vect2;
    [all...]

Completed in 1414 milliseconds

1 2