Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / docs / examples / Point_minus_operator.cpp
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 "tools/fiddle/examples.h"
4 // HASH=9baf247cfcd8272c0ddf6ce93f676b37
5 REG_FIDDLE(Point_minus_operator, 256, 256, true, 0) {
6 void draw(SkCanvas* canvas) {
7     SkPoint test[] = { {0.f, -0.f}, {-1, -2},
8                        { SK_ScalarInfinity, SK_ScalarNegativeInfinity },
9                        { SK_ScalarNaN, -SK_ScalarNaN } };
10     for (const SkPoint& pt : test) {
11         SkPoint negPt = -pt;
12         SkDebugf("pt: %g, %g  negate: %g, %g\n", pt.fX, pt.fY, negPt.fX, negPt.fY);
13     }
14 }
15 }  // END FIDDLE