2014-12-17 09:47:32 +00:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
}
|
2015-08-26 20:07:48 +00:00
|
|
|
return new SkArcToPathEffect(radius);
|
2014-12-17 09:47:32 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
bool filterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*) const override;
|
2014-12-17 09:47:32 +00:00
|
|
|
|
2015-01-26 14:08:52 +00:00
|
|
|
SK_TO_STRING_OVERRIDE()
|
2014-12-17 09:47:32 +00:00
|
|
|
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkArcToPathEffect)
|
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit SkArcToPathEffect(SkScalar radius);
|
2015-03-26 01:17:31 +00:00
|
|
|
void flatten(SkWriteBuffer&) const override;
|
2014-12-17 09:47:32 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SkScalar fRadius;
|
|
|
|
|
|
|
|
typedef SkPathEffect INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|