• Home
  • Raw
  • Download

Lines Matching refs:cx

71         float radius, float pos, float cx, float cy, float r0, float r1) {  in drawLine()  argument
75 float p0x = cx + dx * r0; in drawLine()
77 float p1x = cx + dx * r1; in drawLine()
100 float cx, float cy, float width, float height) { in drawVArrow() argument
101 path.moveTo(cx - width / 2.0f, cy); in drawVArrow()
102 path.lineTo(cx, cy + height); in drawVArrow()
103 path.lineTo(cx + width / 2.0f, cy); in drawVArrow()
113 float cx, float cy, float width, float height) { in drawHArrow() argument
114 path.moveTo(cx, cy - height / 2.0f); in drawHArrow()
115 path.lineTo(cx + width, cy); in drawHArrow()
116 path.lineTo(cx, cy + height / 2.0f); in drawHArrow()
197 float cx, float cy, float radius, float alpha, float textAlpha, in drawClock() argument
264 canvas.drawText(cityName, cx - tw / 2, cy - radius - th, paint); in drawClock()
267 cx - tw / 2 + 1, cy - radius - th, paint); in drawClock()
271 canvas.drawText(time, cx - tw / 2, cy + radius + th + 5, paint); in drawClock()
280 canvas.drawOval(new RectF(cx - 2, cy - 2, cx + 2, cy + 2), paint); in drawClock()
285 canvas.drawOval(new RectF(cx - iradius, cy - iradius, in drawClock()
286 cx + iradius, cy + iradius), in drawClock()
304 drawLine(path, radius * 0.12f, i / 12.0f, cx, cy, r4, r5); in drawClock()
308 drawLine(path, radius * 0.12f, hh / 12.0f, cx, cy, r0, r1); in drawClock()
310 drawLine(path, radius * 0.12f, mm / 60.0f, cx, cy, r0, r2); in drawClock()
312 drawLine(path, radius * 0.036f, ss / 60.0f, cx, cy, r0, r3); in drawClock()
315 drawVArrow(path, cx + radius * 1.13f, cy - radius, in drawClock()
319 drawVArrow(path, cx + radius * 1.13f, cy + radius, in drawClock()
323 drawHArrow(path, cx - radius * 1.3f, cy, -radius * 0.1f, in drawClock()
325 drawHArrow(path, cx + radius * 1.3f, cy, radius * 0.1f, in drawClock()