Flutter Engine
The Flutter Engine
Cubic.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.
4REG_FIDDLE(Cubic, 256, 160, false, 0) {
5void draw(SkCanvas* canvas) {
7 paint.setAntiAlias(true);
9 SkPoint cubicPts[] = {{20, 150}, {90, 10}, {160, 150}, {230, 10}};
10 SkColor colors[] = { 0xff88ff00, 0xff0088bb, 0xff6600cc, 0xffbb3377 };
11 for (unsigned i = 0; i < std::size(colors); ++i) {
12 paint.setColor(0x7fffffff & colors[i]);
13 paint.setStrokeWidth(1);
14 for (unsigned j = 0; j < 3; ++j) {
15 canvas->drawLine(cubicPts[j], cubicPts[j + 1], paint);
16 }
18 path.moveTo(cubicPts[0]);
19 path.cubicTo(cubicPts[1], cubicPts[2], cubicPts[3]);
20 paint.setStrokeWidth(3);
21 paint.setColor(colors[i]);
22 canvas->drawPath(path, paint);
23 cubicPts[1].fY += 30;
24 cubicPts[2].fX += 30;
25 }
26}
27} // END FIDDLE
REG_FIDDLE(Cubic, 256, 160, false, 0)
Definition: Cubic.cpp:4
uint32_t SkColor
Definition: SkColor.h:37
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void drawLine(SkScalar x0, SkScalar y0, SkScalar x1, SkScalar y1, const SkPaint &paint)
Definition: SkCanvas.cpp:2700
void drawPath(const SkPath &path, const SkPaint &paint)
Definition: SkCanvas.cpp:1747
@ kStroke_Style
set to stroke geometry
Definition: SkPaint.h:194
Definition: SkPath.h:59
const Paint & paint
Definition: color_source.cc:38
PODArray< SkColor > colors
Definition: SkRecords.h:276
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition: switches.h:57
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259
float fX
x-axis value
Definition: SkPoint_impl.h:164
float fY
y-axis value
Definition: SkPoint_impl.h:165