Lines Matching refs:fVelocity
77 SkVector fVelocity; member
86 fCenter += fVelocity; in advance()
88 SkASSERT(fVelocity.fX > 0); in advance()
89 fVelocity.fX = -fVelocity.fX; in advance()
91 SkASSERT(fVelocity.fX < 0); in advance()
92 fVelocity.fX = -fVelocity.fX; in advance()
95 if (fVelocity.fY > 0) { in advance()
96 fVelocity.fY = -fVelocity.fY; in advance()
99 if (fVelocity.fY < 0) { in advance()
100 fVelocity.fY = -fVelocity.fY; in advance()
156 fRec[i].fVelocity.fX = rand.nextSScalar1() * kMaxSpeed; in DrawAtlasDrawable()
157 fRec[i].fVelocity.fY = rand.nextSScalar1() * kMaxSpeed; in DrawAtlasDrawable()