OLD | NEW |
(Empty) | |
| 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 #include "SkPathOpsPoint.h" |
| 8 #include "Test.h" |
| 9 |
| 10 static 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 |
| 20 static const size_t tests_count = sizeof(tests) / sizeof(tests[0]); |
| 21 |
| 22 static void DPointTest(skiatest::Reporter* reporter) { |
| 23 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" |
| 50 DEFINE_TESTCLASS("PathOpsDPoint", PathOpsDPointClass, DPointTest) |
OLD | NEW |