Lines Matching refs:oval
54 SkRect oval = SkRect::MakeXYWH(100, 100, 100, 100); variable
59 SkScalar ovalHeight = oval.height() / oHeight;
60 svgArc.moveTo(oval.fLeft, oval.fTop);
61 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kSmall_ArcSize,
62 SkPath::kCW_Direction, oval.right(), oval.bottom());
66 svgArc.moveTo(oval.fLeft + 100, oval.fTop + 100);
67 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kLarge_ArcSize,
68 SkPath::kCCW_Direction, oval.right(), oval.bottom() + 100);
70 oval.offset(50, 0);
198 SkRect oval = SkRect::MakeXYWH(-radius, yOffset - radius, 2 * radius, 2 * radius); variable
199 p.arcTo(oval, 1.25f * 180, .5f * 180, false);