blob: d40c9e2bbf28328add9150b9ad568eda99a54735 [file] [log] [blame]
Mike Reed41232232018-03-07 17:02:47 -05001/*
2 * Copyright 2018 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 SkTrimPathEffect_DEFINED
9#define SkTrimPathEffect_DEFINED
10
11#include "SkPathEffect.h"
12
13class SK_API SkTrimPathEffect {
14public:
15 /**
16 * Take start and stop "t" values (values between 0...1), and return a path that is that
17 * subset of the original path.
18 *
19 * e.g.
20 * Make(0.5, 1.0) --> return the 2nd half of the path
21 * Make(0.33333, 0.66667) --> return the middle third of the path
22 *
23 * The trim values apply to the entire path, so if it contains several contours, all of them
24 * are including in the calculation.
25 *
26 * startT and stopT must be 0..1 inclusive. If they are outside of that interval, they will
27 * be pinned to the nearest legal value. If either is NaN, null will be returned.
28 *
29 * Note: if startT < stopT, this will return one (logical) segment (even if it is spread
30 * across multiple contours). If startT > stopT, then this will return 2 logical
31 * segments: 0...stopT and startT...1
32 */
33 static sk_sp<SkPathEffect> Make(SkScalar startT, SkScalar stopT);
34};
35
36#endif