Lines Matching refs:fVelocity
78 SkVector fVelocity; member
87 fCenter += fVelocity; in advance()
89 SkASSERT(fVelocity.fX > 0); in advance()
90 fVelocity.fX = -fVelocity.fX; in advance()
92 SkASSERT(fVelocity.fX < 0); in advance()
93 fVelocity.fX = -fVelocity.fX; in advance()
96 if (fVelocity.fY > 0) { in advance()
97 fVelocity.fY = -fVelocity.fY; in advance()
100 if (fVelocity.fY < 0) { in advance()
101 fVelocity.fY = -fVelocity.fY; in advance()
157 fRec[i].fVelocity.fX = rand.nextSScalar1() * kMaxSpeed; in DrawAtlasDrawable()
158 fRec[i].fVelocity.fY = rand.nextSScalar1() * kMaxSpeed; in DrawAtlasDrawable()