Lines Matching refs:oval
74 SkRect oval = SkRect::MakeXYWH(100, 100, 100, 100); variable
79 SkScalar ovalHeight = oval.height() / oHeight;
80 svgArc.moveTo(oval.fLeft, oval.fTop);
81 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kSmall_ArcSize,
82 SkPath::kCW_Direction, oval.right(), oval.bottom());
86 svgArc.moveTo(oval.fLeft + 100, oval.fTop + 100);
87 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kLarge_ArcSize,
88 SkPath::kCCW_Direction, oval.right(), oval.bottom() + 100);
90 oval.offset(50, 0);
207 SkRect oval = SkRect::MakeXYWH(-radius, yOffset - radius, 2 * radius, 2 * radius); variable
208 p.arcTo(oval, 1.25f * 180, .5f * 180, false);