Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1344)

Side by Side Diff: tests/PathOpsDPointTest.cpp

Issue 12827020: Add base types for path ops (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/PathOpsDLineTest.cpp ('k') | tests/PathOpsDQuadTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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)
OLDNEW
« no previous file with comments | « tests/PathOpsDLineTest.cpp ('k') | tests/PathOpsDQuadTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698