Flutter Engine
The Flutter Engine
Path_getLastPt.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(Path_getLastPt, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
7 path.moveTo(100, 100);
8 path.quadTo(100, 20, 20, 100);
10 matrix.setRotate(36, 100, 100);
11 path.transform(matrix);
12 SkPoint last;
13 path.getLastPt(&last);
14 SkDebugf("last point: %g, %g\n", last.fX, last.fY);
15}
16} // END FIDDLE
REG_FIDDLE(Path_getLastPt, 256, 256, true, 0)
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
Definition: SkPath.h:59
unsigned useCenter Optional< SkMatrix > matrix
Definition: SkRecords.h:258
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
float fX
x-axis value
Definition: SkPoint_impl.h:164
float fY
y-axis value
Definition: SkPoint_impl.h:165