HomeSort by relevance Sort by last modified time
    Searched defs:nextRandomFloat (Results 1 - 4 of 4) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterMeshConvexHullShape.java 43 store.multLocal(FastMath.nextRandomFloat());
61 store.multLocal(FastMath.nextRandomFloat());
  /external/jmonkeyengine/engine/src/test/jme3test/audio/
TestReverb.java 67 v.setX(FastMath.nextRandomFloat());
68 v.setY(FastMath.nextRandomFloat());
69 v.setZ(FastMath.nextRandomFloat());
76 nextTime = FastMath.nextRandomFloat() * 2 + 0.5f;
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
DefaultParticleInfluencer.java 41 temp.set(FastMath.nextRandomFloat(), FastMath.nextRandomFloat(), FastMath.nextRandomFloat());
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 782 public static float nextRandomFloat() {
793 return (int) (nextRandomFloat() * (max - min + 1)) + min;
    [all...]

Completed in 715 milliseconds