blob: a431eb486c9b2682e49671591883d5a48362f3d1 [file] [log] [blame]
// Copyright 2020 Google LLC.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "tools/fiddle/examples.h"
REG_FIDDLE(massive_coordinates_svg, 800, 600, false, 0) {
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
SkRect r = {0, 0, 800, 590};
paint.setColor(SK_ColorGREEN);
canvas->drawRect(r, paint);
canvas->clipRect(r);
paint.setColor(SK_ColorBLACK);
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(1);
SkPath path = SkPath::Line({-1000, 12345678901234567890.f}, {200, 200});
canvas->drawPath(path, paint);
path = SkPath::Line({600, 400}, {1000, -9.8765432109876543210e+19f});
canvas->drawPath(path, paint);
}
} // END FIDDLE