Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Rect_intersect.cpp
Go to the documentation of this file.
1// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4// HASH=5d0b12e0ef6f1c181dddded4274230ca
5REG_FIDDLE(Rect_intersect, 256, 256, true, 0) {
6void draw(SkCanvas* canvas) {
7 SkRect leftRect = { 10, 40, 50, 80 };
8 SkRect rightRect = { 30, 60, 70, 90 };
9 SkDebugf("%s intersection: ", leftRect.intersect(rightRect) ? "" : "no ");
10 SkDebugf("%g, %g, %g, %g\n", leftRect.left(), leftRect.top(),
11 leftRect.right(), leftRect.bottom());
12}
13} // END FIDDLE
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
constexpr float left() const
Definition SkRect.h:734
constexpr float top() const
Definition SkRect.h:741
bool intersect(const SkRect &r)
Definition SkRect.cpp:114
constexpr float right() const
Definition SkRect.h:748
constexpr float bottom() const
Definition SkRect.h:755