Home
last modified time | relevance | path

Searched refs:convexPath (Results 1 – 2 of 2) sorted by relevance

/third_party/flutter/skia/samplecode/
DSampleClipDrawMatch.cpp64 SkPath convexPath; in create_convex_path() local
65 convexPath.moveTo(kMin, kMin); in create_convex_path()
66 convexPath.lineTo(kMax, kMax); in create_convex_path()
67 convexPath.lineTo(kMin, kMax); in create_convex_path()
68 convexPath.close(); in create_convex_path()
69 convexPath.offset(offset.fX, offset.fY); in create_convex_path()
70 return convexPath; in create_convex_path()
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dshader_warm_up.dart137 final ui.Path convexPath = ui.Path();
138 convexPath.moveTo(20.0, 30.0);
139 convexPath.lineTo(40.0, 20.0);
140 convexPath.lineTo(60.0, 30.0);
141 convexPath.lineTo(60.0, 60.0);
142 convexPath.lineTo(20.0, 60.0);
143 convexPath.close();
149 final List<ui.Path> paths = <ui.Path>[rrectPath, circlePath, path, convexPath];