aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/animator/SkDrawDiscrete.h
blob: 7e1150633a2596baac5ffd5a6f072fe518e44bb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright 2006 The Android Open Source Project
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkDrawDiscrete_DEFINED
#define SkDrawDiscrete_DEFINED

#include "SkPaintPart.h"

class SkDiscrete : public SkDrawPathEffect {
    DECLARE_MEMBER_INFO(Discrete);
    SkDiscrete();
    virtual SkPathEffect* getPathEffect() SK_OVERRIDE;
private:
    SkScalar deviation;
    SkScalar segLength;
};

#endif //SkDrawDiscrete_DEFINED