Searched refs:vel (Results 1 - 16 of 16) sorted by relevance

/external/quake/quake/src/QW/client/
H A Dr_part.c126 VectorCopy (vec3_origin, p->vel);
163 p->vel[j] = (rand()%512)-256;
172 p->vel[j] = (rand()%512)-256;
207 p->vel[j] = (rand()%512)-256;
217 p->vel[j] = (rand()%512)-256;
257 p->vel[j] = dir[j]*15;// + (rand()%300)-150;
273 float vel; local
300 vel = 50 + (rand()&63);
301 VectorScale (dir, vel, p->vel);
315 float vel; local
[all...]
H A Dpmove.c326 float *vel; local
336 vel = pmove.velocity;
338 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1] + vel[2]*vel[2]);
341 vel[0] = 0;
342 vel[
[all...]
H A Dd_iface.h46 vec3_t vel; member in struct:particle_s
H A Dglquake2.h121 vec3_t vel; member in struct:particle_s
H A Dglquake.h167 vec3_t vel; member in struct:particle_s
/external/jmonkeyengine/engine/src/test/jme3test/light/
H A DTestLightRadius.java48 float pos, vel=1; field in class:TestLightRadius
98 pos += tpf * vel * 5f;
100 vel *= -1;
102 vel *= -1;
/external/quake/quake/src/WinQuake/
H A Dr_part.cpp72 float vel; local
103 vel = 50 + (rand()&63);
104 VectorScale (dir, vel, p->vel);
236 VectorCopy (vec3_origin, p->vel);
300 p->vel[j] = (rand()%512)-256;
309 p->vel[j] = (rand()%512)-256;
344 p->vel[j] = (rand()%512)-256;
378 p->vel[j] = (rand()%512)-256;
388 p->vel[
463 float vel; local
505 float vel; local
[all...]
H A Dsv_user.cpp124 float *vel; local
130 vel = velocity;
132 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1]);
137 start[0] = stop[0] = origin[0] + vel[0]/speed*16;
138 start[1] = stop[1] = origin[1] + vel[1]/speed*16;
157 vel[0] = vel[
[all...]
H A Dd_iface.h47 vec3_t vel; member in struct:particle_s
H A Dsv_phys.cpp1368 float *vel; local
1410 vel = ent->u.v.velocity;
1411 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1]);
1423 vel[0] = vel[0] * newspeed;
1424 vel[1] = vel[
[all...]
H A Dglquake.h157 vec3_t vel; member in struct:particle_s
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DFlyByCamera.java293 Vector3f vel = new Vector3f(0, value * moveSpeed, 0);
297 motionAllowed.checkMotionAllowed(pos, vel);
299 pos.addLocal(vel);
305 Vector3f vel = new Vector3f();
309 cam.getLeft(vel);
311 cam.getDirection(vel);
313 vel.multLocal(value * moveSpeed);
316 motionAllowed.checkMotionAllowed(pos, vel);
318 pos.addLocal(vel);
/external/clang/test/CodeGen/
H A D2007-03-05-DataLayout.c20 vector vel; member in struct:bnode
33 #define Vel(x) ((x)->vel)
/external/quake/quake/src/QW/progs/
H A Dweapons.qc79 local vector vel;
81 vel = normalize (self.velocity);
82 vel = normalize(vel + v_up*(random()- 0.5) + v_right*(random()- 0.5));
83 vel = vel + 2*trace_plane_normal;
84 vel = vel * 200;
86 return vel;
95 void(vector org, vector vel) SpawnMeatSpra
[all...]
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
H A DLwjglAudioRenderer.java330 Vector3f vel = src.getVelocity();
331 alSource3f(id, AL_VELOCITY, vel.x, vel.y, vel.z);
453 Vector3f vel = src.getVelocity();
455 alSource3f(id, AL_VELOCITY, vel.x, vel.y, vel.z);
537 Vector3f vel = listener.getVelocity();
538 alListener3f(AL_VELOCITY, vel
[all...]
/external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
H A DAndroidAudioRenderer.java116 Vector3f vel = src.getVelocity();
212 Vector3f vel = listener.getVelocity();

Completed in 1646 milliseconds