Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
Path_IsCubicDegenerate.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Path_IsCubicDegenerate, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Path_IsCubicDegenerate  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Path_IsCubicDegenerate.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 SkPoint points[] = {{1, 0}, {0, 0}, {0, 0}, {0, 0}};
8 SkScalar step = 1;
9 SkScalar prior, length = 0, degenerate = 0;
10 do {
11 prior = points[0].fX;
12 step /= 2;
13 if (SkPath::IsCubicDegenerate(points[0], points[1], points[2], points[3], false)) {
14 degenerate = prior;
15 points[0].fX += step;
16 } else {
17 length = prior;
18 points[0].fX -= step;
19 }
20 } while (prior != points[0].fX);
21 SkDebugf("%1.8g is degenerate\n", degenerate);
22 SkDebugf("%1.8g is length\n", length);
23}
24} // END FIDDLE
static int step(int x, SkScalar min, SkScalar max)
Definition BlurTest.cpp:215
static const int points[]
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 IsCubicDegenerate(const SkPoint &p1, const SkPoint &p2, const SkPoint &p3, const SkPoint &p4, bool exact)
Definition SkPath.cpp:3437
float SkScalar
Definition extension.cpp:12
size_t length
float fX
x-axis value