c0bd9f9fe5
Current strategy: everything from the top Things to look at first are the manual changes: - added tools/rewrite_includes.py - removed -Idirectives from BUILD.gn - various compile.sh simplifications - tweak tools/embed_resources.py - update gn/find_headers.py to write paths from the top - update gn/gn_to_bp.py SkUserConfig.h layout so that #include "include/config/SkUserConfig.h" always gets the header we want. No-Presubmit: true Change-Id: I73a4b181654e0e38d229bc456c0d0854bae3363e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/209706 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Hal Canary <halcanary@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Reviewed-by: Florin Malita <fmalita@chromium.org>
72 lines
2.0 KiB
C++
72 lines
2.0 KiB
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkPath.h"
|
|
#include "samplecode/Sample.h"
|
|
|
|
// Reproduces https://code.google.com/p/chromium/issues/detail?id=279014
|
|
|
|
// Renders a string art shape.
|
|
// The particular shape rendered can be controlled by clicking horizontally, thereby
|
|
// generating an angle from 0 to 1.
|
|
|
|
class StringArtView : public Sample {
|
|
public:
|
|
StringArtView() : fAngle(0.305f) {}
|
|
|
|
protected:
|
|
bool onQuery(Sample::Event* evt) override {
|
|
if (Sample::TitleQ(*evt)) {
|
|
Sample::TitleR(evt, "StringArt");
|
|
return true;
|
|
}
|
|
return this->INHERITED::onQuery(evt);
|
|
}
|
|
|
|
void onDrawContent(SkCanvas* canvas) override {
|
|
SkScalar angle = fAngle*SK_ScalarPI + SkScalarHalf(SK_ScalarPI);
|
|
|
|
SkPoint center = SkPoint::Make(SkScalarHalf(this->width()), SkScalarHalf(this->height()));
|
|
SkScalar length = 5;
|
|
SkScalar step = angle;
|
|
|
|
SkPath path;
|
|
path.moveTo(center);
|
|
|
|
while (length < (SkScalarHalf(SkMinScalar(this->width(), this->height())) - 10.f))
|
|
{
|
|
SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
|
|
length*SkScalarSin(step) + center.fY);
|
|
path.lineTo(rp);
|
|
length += angle / SkScalarHalf(SK_ScalarPI);
|
|
step += angle;
|
|
}
|
|
path.close();
|
|
|
|
SkPaint paint;
|
|
paint.setAntiAlias(true);
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
paint.setColor(0xFF007700);
|
|
|
|
canvas->drawPath(path, paint);
|
|
}
|
|
|
|
Sample::Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned) override {
|
|
fAngle = x/width();
|
|
return nullptr;
|
|
}
|
|
private:
|
|
|
|
SkScalar fAngle;
|
|
typedef Sample INHERITED;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_SAMPLE( return new StringArtView(); )
|