Home | History | Annotate | Download | only in neko

Lines Matching refs:nsr

150         final Random nsr = notSoRandom(seed);
153 mBodyColor = chooseP(nsr, P_BODY_COLORS);
155 nsr.nextFloat()*360f, frandrange(nsr,0.5f,1f), frandrange(nsr,0.5f, 1f)});
165 tint(chooseP(nsr, P_BELLY_COLORS), D.belly);
166 tint(chooseP(nsr, P_BELLY_COLORS), D.back);
167 final int faceColor = chooseP(nsr, P_BELLY_COLORS);
174 if (nsr.nextFloat() < 0.25f) {
178 if (nsr.nextFloat() < 0.25f) {
181 } else if (nsr.nextFloat() < 0.25f) {
184 } else if (nsr.nextFloat() < 0.1f) {
186 tint(0xFFFFFFFF, (Drawable) choose(nsr, D.foot1, D.foot2, D.foot3, D.foot4));
190 tint(nsr.nextFloat() < 0.333f ? 0xFFFFFFFF : mBodyColor, D.tailCap);
192 final int capColor = chooseP(nsr, isDark(mBodyColor) ? P_LIGHT_SPOT_COLORS : P_DARK_SPOT_COLORS);
194 //tint(chooseP(nsr, isDark(bodyColor) ? P_LIGHT_SPOT_COLORS : P_DARK_SPOT_COLORS), D.nose);
196 final int collarColor = chooseP(nsr, P_COLLAR_COLORS);
198 mBowTie = nsr.nextFloat() < 0.1f;