blob: e588193671c04650e76d892d9b614bacfc8eb4e1 [file] [log] [blame]
caryclark@google.com07393ca2013-04-08 11:47:37 +00001/*
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 */
Mike Kleinc0bd9f92019-04-23 12:05:21 -05007#include "src/pathops/SkPathOpsPoint.h"
8#include "tests/PathOpsTestCommon.h"
9#include "tests/Test.h"
caryclark@google.com07393ca2013-04-08 11:47:37 +000010
11static const SkDPoint tests[] = {
12 {0, 0},
13 {1, 0},
14 {0, 1},
15 {2, 1},
16 {1, 2},
17 {1, 1},
18 {2, 2}
19};
20
caryclark@google.comad65a3e2013-04-15 19:13:59 +000021static const size_t tests_count = SK_ARRAY_COUNT(tests);
caryclark@google.com07393ca2013-04-08 11:47:37 +000022
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +000023DEF_TEST(PathOpsDVector, reporter) {
caryclark@google.com07393ca2013-04-08 11:47:37 +000024 for (size_t index = 0; index < tests_count - 1; ++index) {
25 SkDVector v1 = tests[index + 1] - tests[index];
caryclark@google.com8d0a5242013-07-16 16:11:16 +000026 SkASSERT(ValidVector(v1));
caryclark@google.com07393ca2013-04-08 11:47:37 +000027 SkDVector v2 = tests[index] - tests[index + 1];
caryclark@google.com8d0a5242013-07-16 16:11:16 +000028 SkASSERT(ValidVector(v2));
caryclark@google.com07393ca2013-04-08 11:47:37 +000029 v1 += v2;
30 REPORTER_ASSERT(reporter, v1.fX == 0 && v1.fY == 0);
Ben Wagnerff134f22018-04-24 16:29:16 -040031 v2 -= static_cast<decltype(v2)&>(v2);
caryclark@google.com07393ca2013-04-08 11:47:37 +000032 REPORTER_ASSERT(reporter, v2.fX == 0 && v2.fY == 0);
33 v1 = tests[index + 1] - tests[index];
34 v1 /= 2;
35 v1 *= 2;
36 v1 -= tests[index + 1] - tests[index];
37 REPORTER_ASSERT(reporter, v1.fX == 0 && v1.fY == 0);
38 SkVector sv = v1.asSkVector();
39 REPORTER_ASSERT(reporter, sv.fX == 0 && sv.fY == 0);
40 v1 = tests[index + 1] - tests[index];
41 double lenSq = v1.lengthSquared();
42 double v1Dot = v1.dot(v1);
43 REPORTER_ASSERT(reporter, lenSq == v1Dot);
44 REPORTER_ASSERT(reporter, approximately_equal(sqrt(lenSq), v1.length()));
45 double v1Cross = v1.cross(v1);
46 REPORTER_ASSERT(reporter, v1Cross == 0);
47 }
48}