Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Point_minus_operator.cpp
Go to the documentation of this file.
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.
4// HASH=9baf247cfcd8272c0ddf6ce93f676b37
5REG_FIDDLE(Point_minus_operator, 256, 256, true, 0) {
6void draw(SkCanvas* canvas) {
7 SkPoint test[] = { {0.f, -0.f}, {-1, -2},
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
#define test(name)
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
#define SK_ScalarNaN
Definition SkScalar.h:28
#define SK_ScalarInfinity
Definition SkScalar.h:26
#define SK_ScalarNegativeInfinity
Definition SkScalar.h:27
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
float fX
x-axis value
float fY
y-axis value