blob: cdd5e1c2d13909b984e10c60f55f492d9e94b4ff [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
reed@google.combf0001d2014-01-13 14:53:55 +00007
bsalomon@google.com22c5dea2011-07-07 14:38:03 +00008#include "SampleCode.h"
reed76113a92015-02-02 12:55:02 -08009#include "SkAnimTimer.h"
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000010#include "SkView.h"
11#include "SkCanvas.h"
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000012#include "SkGradientShader.h"
bungeman@google.comfab44db2013-10-11 18:50:45 +000013#include "SkString.h"
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000014
15static void draw_gradient2(SkCanvas* canvas, const SkRect& rect, SkScalar delta) {
16 SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE, SK_ColorMAGENTA };
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000017 SkScalar pos[] = { 0, 0.25f, 0.75f, SK_Scalar1 };
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000018
19 SkScalar l = rect.fLeft;
20 SkScalar t = rect.fTop;
21 SkScalar w = rect.width();
22 SkScalar h = rect.height();
23
24 SkASSERT(0 == SkScalarMod(w, SK_Scalar1 * 5));
25
26 SkPoint c0 = { l + 2 * w / 5 + delta, t + h / 2 };
27 SkPoint c1 = { l + 3 * w / 5, t + h / 2 };
28 SkScalar r0 = w / 5;
29 SkScalar r1 = 2 * w / 5;
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000030 SkPaint paint;
reed8a21c9f2016-03-08 18:50:00 -080031 paint.setShader(SkGradientShader::MakeTwoPointConical(c0, r0, c1, r1, colors,
32 pos, SK_ARRAY_COUNT(pos),
33 SkShader::kClamp_TileMode));
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000034 canvas->drawRect(rect, paint);
35}
36
37
38class DegenerateTwoPtRadialsView : public SampleView {
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000039public:
40 DegenerateTwoPtRadialsView() {
41 fTime = 0;
42 this->setBGColor(0xFFDDDDDD);
43 }
44
45protected:
mtklein36352bf2015-03-25 18:17:31 -070046 bool onQuery(SkEvent* evt) override {
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000047 if (SampleCode::TitleQ(*evt)) {
48 SampleCode::TitleR(evt, "DegenerateTwoPtRadials");
49 return true;
50 }
51 return this->INHERITED::onQuery(evt);
52 }
53
mtklein36352bf2015-03-25 18:17:31 -070054 void onDrawContent(SkCanvas* canvas) override {
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000055 SkScalar delta = fTime / 15.f;
reed@google.come1ca7052013-12-17 19:22:07 +000056 int intPart = SkScalarFloorToInt(delta);
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000057 delta = delta - SK_Scalar1 * intPart;
58 if (intPart % 2) {
59 delta = SK_Scalar1 - delta;
60 }
61 delta -= SK_ScalarHalf;
62 static const int DELTA_SCALE = 500;
63 delta /= DELTA_SCALE;
64
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000065 SkScalar w = SK_Scalar1 * 500;
66 SkScalar h = SK_Scalar1 * 500;
67 SkScalar l = SK_Scalar1 * 100;
68 SkScalar t = SK_Scalar1 * 100;
69 draw_gradient2(canvas, SkRect::MakeXYWH(l, t, w, h), delta);
bungeman@google.comfab44db2013-10-11 18:50:45 +000070 SkString txt;
71 txt.appendf("gap at \"tangent\" pt = %f", SkScalarToFloat(delta));
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000072 SkPaint paint;
73 paint.setAntiAlias(true);
74 paint.setColor(SK_ColorBLACK);
Cary Clark2a475ea2017-04-28 15:35:12 -040075 canvas->drawString(txt, l + w/2 + w*DELTA_SCALE*delta, t + h + SK_Scalar1 * 10, paint);
reedd9adfe62015-02-01 19:01:04 -080076 }
77
mtklein36352bf2015-03-25 18:17:31 -070078 bool onAnimate(const SkAnimTimer& timer) override {
reed76113a92015-02-02 12:55:02 -080079 fTime = SkDoubleToScalar(timer.secs() / 15);
reedd9adfe62015-02-01 19:01:04 -080080 return true;
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000081 }
82
83private:
84 SkScalar fTime;
85 typedef SampleView INHERITED;
86};
87
88//////////////////////////////////////////////////////////////////////////////
89
90static SkView* MyFactory() { return new DegenerateTwoPtRadialsView; }
91static SkViewRegister reg(MyFactory);