Home | History | Annotate | Download | only in controllersample

Lines Matching defs:mRandom

60     private final Random mRandom;
86 mRandom = new Random();
393 float size = mRandom.nextFloat() * (mMaxObstacleSize - mMinObstacleSize)
396 int edge = mRandom.nextInt(4);
400 positionY = mRandom.nextInt(getHeight());
404 positionY = mRandom.nextInt(getHeight());
407 positionX = mRandom.nextInt(getWidth());
411 positionX = mRandom.nextInt(getWidth());
435 float direction = mRandom.nextFloat() * (float) Math.PI * 2;
436 float speed = mRandom.nextFloat() * (mMaxObstacleSpeed - mMinObstacleSpeed)