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 | */ |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 7 | #include "PathOpsTestCommon.h" |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 8 | #include "SkPathOpsLine.h" |
| 9 | #include "Test.h" |
| 10 | |
| 11 | static const SkDLine tests[] = { |
| 12 | {{{2, 1}, {2, 1}}}, |
| 13 | {{{2, 1}, {1, 1}}}, |
| 14 | {{{2, 1}, {2, 2}}}, |
| 15 | {{{1, 1}, {2, 2}}}, |
| 16 | {{{3, 0}, {2, 1}}}, |
| 17 | {{{3, 2}, {1, 1}}}, |
| 18 | }; |
| 19 | |
| 20 | static const SkDPoint left[] = { |
| 21 | {2, 1}, |
| 22 | {1, 0}, |
| 23 | {1, 1}, |
| 24 | {1, 2}, |
| 25 | {2, 0}, |
| 26 | {2, 1} |
| 27 | }; |
| 28 | |
caryclark@google.com | ad65a3e | 2013-04-15 19:13:59 +0000 | [diff] [blame] | 29 | static const size_t tests_count = SK_ARRAY_COUNT(tests); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 30 | |
tfarina@chromium.org | 78e7b4e | 2014-01-02 21:45:03 +0000 | [diff] [blame] | 31 | DEF_TEST(PathOpsLineUtilities, reporter) { |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 32 | for (size_t index = 0; index < tests_count; ++index) { |
| 33 | const SkDLine& line = tests[index]; |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 34 | SkASSERT(ValidLine(line)); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 35 | SkDLine line2; |
| 36 | SkPoint pts[2] = {line[0].asSkPoint(), line[1].asSkPoint()}; |
| 37 | line2.set(pts); |
| 38 | REPORTER_ASSERT(reporter, line[0] == line2[0] && line[1] == line2[1]); |
| 39 | const SkDPoint& pt = left[index]; |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 40 | SkASSERT(ValidPoint(pt)); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 41 | double result = line.isLeft(pt); |
| 42 | if ((result <= 0 && index >= 1) || (result < 0 && index == 0)) { |
| 43 | SkDebugf("%s [%d] expected left\n", __FUNCTION__, index); |
| 44 | REPORTER_ASSERT(reporter, 0); |
| 45 | } |
| 46 | line2 = line.subDivide(1, 0); |
| 47 | REPORTER_ASSERT(reporter, line[0] == line2[1] && line[1] == line2[0]); |
| 48 | line2 = SkDLine::SubDivide(pts, 1, 0); |
| 49 | REPORTER_ASSERT(reporter, line[0] == line2[1] && line[1] == line2[0]); |
caryclark@google.com | 4fdbb22 | 2013-07-23 15:27:41 +0000 | [diff] [blame] | 50 | SkDPoint mid = line.ptAtT(.5); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 51 | REPORTER_ASSERT(reporter, approximately_equal((line[0].fX + line[1].fX) / 2, mid.fX)); |
| 52 | REPORTER_ASSERT(reporter, approximately_equal((line[0].fY + line[1].fY) / 2, mid.fY)); |
| 53 | } |
| 54 | } |