Hal Canary | 83c2f70 | 2019-03-07 14:53:03 -0500 | [diff] [blame] | 1 | // Copyright 2019 Google LLC. |
| 2 | // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. |
| 3 | #include "fiddle/examples.h" |
| 4 | // HASH=c6c5b40cad7c3a839fdf576b380391a6 |
| 5 | REG_FIDDLE(Rect_021, 256, 256, true, 0) { |
| 6 | void draw(SkCanvas* canvas) { |
| 7 | auto debugster = [](const SkRect& test) -> void { |
| 8 | SkRect negZero = {-0.0f, -0.0f, 2, 2}; |
| 9 | SkDebugf("{%g, %g, %g, %g} %c= {%g, %g, %g, %g} %s numerically equal\n", |
| 10 | test.fLeft, test.fTop, test.fRight, test.fBottom, |
| 11 | negZero.fLeft, negZero.fTop, negZero.fRight, negZero.fBottom, |
| 12 | test == negZero ? '=' : '!', |
| 13 | test.fLeft == negZero.fLeft && test.fTop == negZero.fTop && |
| 14 | test.fRight == negZero.fRight && test.fBottom == negZero.fBottom ? |
| 15 | "and are" : "yet are not"); |
| 16 | }; |
| 17 | SkRect tests[] = {{0, 0, 2, 2}, {-0, -0, 2, 2}, {0.0f, 0.0f, 2, 2}}; |
| 18 | SkDebugf("tests are %s" "equal\n", tests[0] == tests[1] && tests[1] == tests[2] ? "" : "not "); |
| 19 | for (auto rect : tests) { |
| 20 | debugster(rect); |
| 21 | } |
| 22 | } |
| 23 | } // END FIDDLE |