Skia
2D Graphics Library
SkSVGCircle.h
Go to the documentation of this file.
1 /*
2  * Copyright 2016 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #ifndef SkSVGCircle_DEFINED
9 #define SkSVGCircle_DEFINED
10 
13 
14 struct SkPoint;
15 
16 class SK_API SkSVGCircle final : public SkSVGShape {
17 public:
19 
23 
24 protected:
25  bool parseAndSetAttribute(const char*, const char*) override;
26 
27  void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&,
28  SkPathFillType) const override;
29 
30  SkPath onAsPath(const SkSVGRenderContext&) const override;
31 
32  SkRect onObjectBoundingBox(const SkSVGRenderContext&) const override;
33 
34 private:
35  SkSVGCircle();
36 
37  // resolve and return the center and radius values
38  std::tuple<SkPoint, SkScalar> resolve(const SkSVGLengthContext&) const;
39 
40  using INHERITED = SkSVGShape;
41 };
42 
43 #endif // SkSVGCircle_DEFINED
SkPathFillType
Definition: SkPathTypes.h:11
#define SVG_ATTR(attr_name, attr_type, attr_default)
Definition: SkSVGNode.h:203
float SkScalar
Definition: SkScalar.h:14
SkCanvas provides an interface for drawing, and how the drawing is clipped and transformed.
Definition: SkCanvas.h:99
SkPaint controls options applied when drawing.
Definition: SkPaint.h:44
SkPath contain geometry.
Definition: SkPath.h:58
Definition: SkSVGCircle.h:16
static sk_sp< SkSVGCircle > Make()
Definition: SkSVGCircle.h:18
Definition: SkSVGRenderContext.h:27
Definition: SkSVGTypes.h:116
Definition: SkSVGRenderContext.h:61
Definition: SkSVGShape.h:17
Shared pointer class to wrap classes that support a ref()/unref() interface.
Definition: SkRefCnt.h:220
SkRect holds four float coordinates describing the upper and lower bounds of a rectangle.
Definition: SkRect.h:582