blob: 6ae7e3648542ed7ffe728c9d1e1db975e82fd6f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkArcToPathEffect_DEFINED
#define SkArcToPathEffect_DEFINED
#include "SkPathEffect.h"
class SK_API SkArcToPathEffect : public SkPathEffect {
public:
/** radius must be > 0 to have an effect. It specifies the distance from each corner
that should be "rounded".
*/
static SkPathEffect* Create(SkScalar radius) {
if (radius <= 0) {
return NULL;
}
return SkNEW_ARGS(SkArcToPathEffect, (radius));
}
bool filterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*) const override;
SK_TO_STRING_OVERRIDE()
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkArcToPathEffect)
protected:
explicit SkArcToPathEffect(SkScalar radius);
void flatten(SkWriteBuffer&) const override;
private:
SkScalar fRadius;
typedef SkPathEffect INHERITED;
};
#endif
|