Home | History | Annotate | Download | only in view

Lines Matching refs:mRandom

50     private final Random mRandom;
86 mRandom = new Random();
418 float size = mRandom.nextFloat() * (mMaxObstacleSize - mMinObstacleSize)
423 int edge = mRandom.nextInt(4);
427 positionY = mRandom.nextInt(getHeight());
431 positionY = mRandom.nextInt(getHeight());
434 positionX = mRandom.nextInt(getWidth());
438 positionX = mRandom.nextInt(getWidth());
447 float direction = mRandom.nextFloat() * (float) Math.PI * 2;
448 float speed = mRandom.nextFloat() * (mMaxObstacleSpeed - mMinObstacleSpeed)