Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Path_IsQuadDegenerate.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=a2b255a7dac1926cc3a247d318d63c62
5REG_FIDDLE(Path_IsQuadDegenerate, 256, 256, true, 0) {
6void draw(SkCanvas* canvas) {
7 auto debugster = [](const SkPath& path, bool exact) -> void {
8 SkDebugf("quad (%1.8g,%1.8g), (%1.8g,%1.8g), (%1.8g,%1.8g) is %s" "degenerate, %s\n",
9 path.getPoint(0).fX, path.getPoint(0).fY, path.getPoint(1).fX,
10 path.getPoint(1).fY, path.getPoint(2).fX, path.getPoint(2).fY,
11 SkPath::IsQuadDegenerate(path.getPoint(0), path.getPoint(1), path.getPoint(2), exact) ?
12 "" : "not ", exact ? "exactly" : "nearly");
13 };
14 SkPath path, offset;
15 path.moveTo({100, 100});
16 path.quadTo({100.00001f, 100.00001f}, {100.00002f, 100.00002f});
17 offset.addPath(path, 1000, 1000);
18 for (bool exact : { false, true } ) {
19 debugster(path, exact);
20 debugster(offset, exact);
21 }
22}
23} // END FIDDLE
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
static bool IsQuadDegenerate(const SkPoint &p1, const SkPoint &p2, const SkPoint &p3, bool exact)
Definition SkPath.cpp:3431
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
Point offset