chromium/third_party/webrtc/modules/desktop_capture/desktop_geometry.cc

/*
 *  Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "modules/desktop_capture/desktop_geometry.h"

#include <algorithm>
#include <cmath>

namespace webrtc {

bool DesktopRect::Contains(const DesktopVector& point) const {}

bool DesktopRect::ContainsRect(const DesktopRect& rect) const {}

void DesktopRect::IntersectWith(const DesktopRect& rect) {}

void DesktopRect::UnionWith(const DesktopRect& rect) {}

void DesktopRect::Translate(int32_t dx, int32_t dy) {}

void DesktopRect::Extend(int32_t left_offset,
                         int32_t top_offset,
                         int32_t right_offset,
                         int32_t bottom_offset) {}

void DesktopRect::Scale(double horizontal, double vertical) {}

}  // namespace webrtc