Home | History | Annotate | Download | only in pie

Lines Matching defs:origin

55         PointF origin = new PointF(plotArea.centerX(), plotArea.centerY());
62 //PointF lastRadial = calculateLineEnd(origin, radius, offset);
64 RectF rec = new RectF(origin.x - radius, origin.y - radius, origin.x + radius, origin.y + radius);
71 //PointF radial = calculateLineEnd(origin, radius, offset);
161 protected void drawSegmentLabel(Canvas canvas, PointF origin,
163 canvas.drawText(seg.getTitle(), origin.x, origin.y, f.getLabelPaint());
200 private PointF calculateLineEnd(PointF origin, float rad, float deg) {
207 return new PointF(origin.x + (float) x, origin.y + (float) y);