/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/ |
NewtonianParticleInfluencer.java | 3 import com.jme3.effect.Particle; 34 public void influenceParticle(Particle particle, EmitterShape emitterShape) { 35 emitterShape.getRandomPointAndNormal(particle.position, particle.velocity); 36 // influencing the particle's velocity 38 particle.velocity.multLocal(normalVelocity); 41 temp.set(particle.velocity.z * surfaceTangentFactor, particle.velocity.y * surfaceTangentFactor, -particle.velocity.x * surfaceTangentFactor) [all...] |
DefaultParticleInfluencer.java | 3 import com.jme3.effect.Particle; 16 * This influencer is default for the particle emitter. 29 public void influenceParticle(Particle particle, EmitterShape emitterShape) { 30 emitterShape.getRandomPoint(particle.position); 31 this.applyVelocityVariation(particle); 35 * This method applies the variation to the particle with already set velocity. 36 * @param particle 37 * the particle to be affected 39 protected void applyVelocityVariation(Particle particle) [all...] |
ParticleInfluencer.java | 3 import com.jme3.effect.Particle; 16 * This method influences the particle. 17 * @param particle 18 * particle to be influenced 22 void influenceParticle(Particle particle, EmitterShape emitterShape); 32 * Set the initial velocity a particle is spawned with, 35 * A particle will move toward its velocity unless it is effected by the 49 * of the particle is determined. <code>variation</code> should be a value
|
EmptyParticleInfluencer.java | 3 import com.jme3.effect.Particle; 11 * This influencer does not influence particle at all. 26 public void influenceParticle(Particle particle, EmitterShape emitterShape) {
|
/external/chromium_org/third_party/libxml/src/ |
xmlschemas.c | 656 * A particle component. 664 xmlSchemaTreeItemPtr next; /* next particle */ 685 xmlSchemaTreeItemPtr children; /* first particle (OR "element decl" OR "wildcard") */ 6874 xmlSchemaParticlePtr particle; local 8439 xmlSchemaParticlePtr particle = NULL; local 11197 xmlSchemaParticlePtr particle = NULL; local 18297 xmlSchemaParticlePtr particle = local 18970 xmlSchemaParticlePtr particle = WXS_MODELGROUP_PARTICLE(mg); local 19991 xmlSchemaParticlePtr particle = WXS_MODELGROUP_PARTICLE(mg); local [all...] |
xmlschemastypes.c | 371 xmlSchemaTypeErrMemory(NULL, "allocating particle component"); 407 xmlSchemaParticlePtr particle; local 410 /* First particle. */ 411 particle = xmlSchemaAddParticle(); 412 if (particle == NULL) 414 xmlSchemaTypeAnyTypeDef->subtypes = (xmlSchemaTypePtr) particle; 424 particle->children = (xmlSchemaTreeItemPtr) sequence; 425 /* Second particle. */ 426 particle = xmlSchemaAddParticle(); 427 if (particle == NULL 626 xmlSchemaParticlePtr particle; local [all...] |
/external/libxml2/ |
xmlschemas.c | 656 * A particle component. 664 xmlSchemaTreeItemPtr next; /* next particle */ 685 xmlSchemaTreeItemPtr children; /* first particle (OR "element decl" OR "wildcard") */ 6874 xmlSchemaParticlePtr particle; local 8439 xmlSchemaParticlePtr particle = NULL; local 11197 xmlSchemaParticlePtr particle = NULL; local 18298 xmlSchemaParticlePtr particle = local 18971 xmlSchemaParticlePtr particle = WXS_MODELGROUP_PARTICLE(mg); local 19992 xmlSchemaParticlePtr particle = WXS_MODELGROUP_PARTICLE(mg); local [all...] |
xmlschemastypes.c | 371 xmlSchemaTypeErrMemory(NULL, "allocating particle component"); 407 xmlSchemaParticlePtr particle; local 410 /* First particle. */ 411 particle = xmlSchemaAddParticle(); 412 if (particle == NULL) 414 xmlSchemaTypeAnyTypeDef->subtypes = (xmlSchemaTypePtr) particle; 424 particle->children = (xmlSchemaTreeItemPtr) sequence; 425 /* Second particle. */ 426 particle = xmlSchemaAddParticle(); 427 if (particle == NULL 626 xmlSchemaParticlePtr particle; local [all...] |