blob: 688d01b890bb34e5e9bd58b6358629b38a9f9822 [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 */
7#include "SkPathOpsPoint.h"
8#include "Test.h"
9
10static const SkDPoint tests[] = {
11 {0, 0},
12 {1, 0},
13 {0, 1},
14 {2, 1},
15 {1, 2},
16 {1, 1},
17 {2, 2}
18};
19
caryclark@google.comad65a3e2013-04-15 19:13:59 +000020static const size_t tests_count = SK_ARRAY_COUNT(tests);
caryclark@google.com07393ca2013-04-08 11:47:37 +000021
caryclark@google.comad65a3e2013-04-15 19:13:59 +000022static void PathOpsDPointTest(skiatest::Reporter* reporter) {
caryclark@google.com07393ca2013-04-08 11:47:37 +000023 for (size_t index = 0; index < tests_count; ++index) {
24 const SkDPoint& pt = tests[index];
25 SkDPoint p = pt;
26 REPORTER_ASSERT(reporter, p == pt);
27 REPORTER_ASSERT(reporter, !(pt != pt));
28 SkDVector v = p - pt;
29 p += v;
30 REPORTER_ASSERT(reporter, p == pt);
31 p -= v;
32 REPORTER_ASSERT(reporter, p == pt);
33 REPORTER_ASSERT(reporter, p.approximatelyEqual(pt));
34 SkPoint sPt = pt.asSkPoint();
35 p.set(sPt);
36 REPORTER_ASSERT(reporter, p == pt);
37 REPORTER_ASSERT(reporter, p.approximatelyEqual(sPt));
38 REPORTER_ASSERT(reporter, p.roughlyEqual(pt));
39 REPORTER_ASSERT(reporter, p.moreRoughlyEqual(pt));
40 p.fX = p.fY = 0;
41 REPORTER_ASSERT(reporter, p.fX == 0 && p.fY == 0);
42 REPORTER_ASSERT(reporter, p.approximatelyZero());
43 REPORTER_ASSERT(reporter, pt.distanceSquared(p) == pt.fX * pt.fX + pt.fY * pt.fY);
44 REPORTER_ASSERT(reporter, approximately_equal(pt.distance(p),
45 sqrt(pt.fX * pt.fX + pt.fY * pt.fY)));
46 }
47}
48
49#include "TestClassDef.h"
caryclark@google.comad65a3e2013-04-15 19:13:59 +000050DEFINE_TESTCLASS_SHORT(PathOpsDPointTest)