caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 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 | #ifndef SkPathOps_DEFINED |
| 8 | #define SkPathOps_DEFINED |
| 9 | |
commit-bot@chromium.org | 13b3aa1 | 2013-07-09 19:43:35 +0000 | [diff] [blame] | 10 | #include "SkPreConfig.h" |
| 11 | |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 12 | class SkPath; |
| 13 | |
caryclark@google.com | 7dfbb07 | 2013-04-22 14:37:05 +0000 | [diff] [blame] | 14 | // FIXME: move everything below into the SkPath class |
| 15 | /** |
| 16 | * The logical operations that can be performed when combining two paths. |
| 17 | */ |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 18 | enum SkPathOp { |
caryclark@google.com | 7dfbb07 | 2013-04-22 14:37:05 +0000 | [diff] [blame] | 19 | kDifference_PathOp, //!< subtract the op path from the first path |
| 20 | kIntersect_PathOp, //!< intersect the two paths |
| 21 | kUnion_PathOp, //!< union (inclusive-or) the two paths |
| 22 | kXOR_PathOp, //!< exclusive-or the two paths |
| 23 | kReverseDifference_PathOp, //!< subtract the first path from the op path |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 24 | }; |
| 25 | |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 26 | /** Set this path to the result of applying the Op to this path and the |
| 27 | specified path: this = (this op operand). |
| 28 | The resulting path will be constructed from non-overlapping contours. |
skia.committer@gmail.com | 214c870 | 2013-04-27 07:02:53 +0000 | [diff] [blame] | 29 | The curve order is reduced where possible so that cubics may be turned |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 30 | into quadratics, and quadratics maybe turned into lines. |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 31 | |
skia.committer@gmail.com | 214c870 | 2013-04-27 07:02:53 +0000 | [diff] [blame] | 32 | Returns true if operation was able to produce a result; |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 33 | otherwise, result is unmodified. |
| 34 | |
| 35 | @param one The first operand (for difference, the minuend) |
| 36 | @param two The second operand (for difference, the subtrahend) |
| 37 | @param result The product of the operands. The result may be one of the |
| 38 | inputs. |
| 39 | @return True if operation succeeded. |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 40 | */ |
commit-bot@chromium.org | 13b3aa1 | 2013-07-09 19:43:35 +0000 | [diff] [blame] | 41 | bool SK_API Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result); |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 42 | |
| 43 | /** Set this path to a set of non-overlapping contours that describe the |
skia.committer@gmail.com | 214c870 | 2013-04-27 07:02:53 +0000 | [diff] [blame] | 44 | same area as the original path. |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 45 | The curve order is reduced where possible so that cubics may |
| 46 | be turned into quadratics, and quadratics maybe turned into lines. |
| 47 | |
skia.committer@gmail.com | 214c870 | 2013-04-27 07:02:53 +0000 | [diff] [blame] | 48 | Returns true if operation was able to produce a result; |
caryclark@google.com | 66560ca | 2013-04-26 19:51:16 +0000 | [diff] [blame] | 49 | otherwise, result is unmodified. |
| 50 | |
| 51 | @param path The path to simplify. |
| 52 | @param result The simplified path. The result may be the input. |
| 53 | @return True if simplification succeeded. |
| 54 | */ |
commit-bot@chromium.org | 13b3aa1 | 2013-07-09 19:43:35 +0000 | [diff] [blame] | 55 | bool SK_API Simplify(const SkPath& path, SkPath* result); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 56 | |
| 57 | #endif |