OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "gm.h" | 8 #include "gm.h" |
9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkPath.h" | 10 #include "SkPath.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 paint.setStrokeWidth(21); | 27 paint.setStrokeWidth(21); |
28 paint.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0)); | 28 paint.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0)); |
29 canvas->drawPath(path, paint); | 29 canvas->drawPath(path, paint); |
30 | 30 |
31 paint.setColor(SK_ColorGREEN); | 31 paint.setColor(SK_ColorGREEN); |
32 paint.setPathEffect(nullptr); | 32 paint.setPathEffect(nullptr); |
33 paint.setStrokeWidth(0); | 33 paint.setStrokeWidth(0); |
34 canvas->drawPath(path, paint); | 34 canvas->drawPath(path, paint); |
35 } | 35 } |
36 | 36 |
37 DEF_SIMPLE_GM(dashcubics, canvas, 860, 700) { | 37 DEF_SIMPLE_GM(dashcubics, canvas, 865, 750) { |
38 SkPath path; | 38 SkPath path; |
39 const char* d = "M 337,98 C 250,141 250,212 250,212 C 250,212 250,212 25
0,212" | 39 const char* d = "M 337,98 C 250,141 250,212 250,212 C 250,212 250,212 25
0,212" |
40 "C 250,212 250,212 250,212 C 250,212 250,141 163,98 C 156,195 217,231 21
7,231" | 40 "C 250,212 250,212 250,212 C 250,212 250,141 163,98 C 156,195 217,231 21
7,231" |
41 "C 217,231 217,231 217,231 C 217,231 217,231 217,231 C 217,231 156,195 7
5,250" | 41 "C 217,231 217,231 217,231 C 217,231 217,231 217,231 C 217,231 156,195 7
5,250" |
42 "C 156,305 217,269 217,269 C 217,269 217,269 217,269 C 217,269 217,269 2
17,269" | 42 "C 156,305 217,269 217,269 C 217,269 217,269 217,269 C 217,269 217,269 2
17,269" |
43 "C 217,269 156,305 163,402 C 250,359 250,288 250,288 C 250,288 250,288 2
50,288" | 43 "C 217,269 156,305 163,402 C 250,359 250,288 250,288 C 250,288 250,288 2
50,288" |
44 "C 250,288 250,288 250,288 C 250,288 250,359 338,402 C 345,305 283,269 2
83,269" | 44 "C 250,288 250,288 250,288 C 250,288 250,359 338,402 C 345,305 283,269 2
83,269" |
45 "C 283,269 283,269 283,269 C 283,269 283,269 283,269 C 283,269 345,305 4
25,250" | 45 "C 283,269 283,269 283,269 C 283,269 283,269 283,269 C 283,269 345,305 4
25,250" |
46 "C 344,195 283,231 283,231 C 283,231 283,231 283,231 C 283,231 283,231 2
83,231" | 46 "C 344,195 283,231 283,231 C 283,231 283,231 283,231 C 283,231 283,231 2
83,231" |
47 "C 283,231 344,195 338,98"; | 47 "C 283,231 344,195 338,98"; |
48 | 48 |
49 SkParsePath::FromSVGString(d, &path); | 49 SkParsePath::FromSVGString(d, &path); |
50 canvas->translate(-35.f, -55.f); | 50 canvas->translate(-35.f, -55.f); |
51 for (int x = 0; x < 2; ++x) { | 51 for (int x = 0; x < 2; ++x) { |
52 for (int y = 0; y < 2; ++y) { | 52 for (int y = 0; y < 2; ++y) { |
53 canvas->save(); | 53 canvas->save(); |
54 canvas->translate(x * 430.f, y * 355.f); | 54 canvas->translate(x * 430.f, y * 355.f); |
55 SkScalar intervals[] = { 5 + (x ? 0 : 0.0001f + 0.0001f), 10 }; | 55 SkScalar intervals[] = { 5 + (x ? 0 : 0.0001f + 0.0001f), 10 }; |
56 flower(canvas, path, intervals, y ? SkPaint::kDefault_Join : SkP
aint::kRound_Join); | 56 flower(canvas, path, intervals, y ? SkPaint::kDefault_Join : SkP
aint::kRound_Join); |
57 canvas->restore(); | 57 canvas->restore(); |
58 } | 58 } |
59 } | 59 } |
60 } | 60 } |
OLD | NEW |